We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df3cb58 commit 029cb38Copy full SHA for 029cb38
Flow.Launcher/ProgressBoxEx.xaml.cs
@@ -33,6 +33,15 @@ await Application.Current.Dispatcher.InvokeAsync(() =>
33
prgBox.Show();
34
});
35
}
36
+ else
37
+ {
38
+ prgBox = new ProgressBoxEx(forceClosed)
39
40
+ Title = caption
41
+ };
42
+ prgBox.TitleTextBlock.Text = caption;
43
+ prgBox.Show();
44
+ }
45
46
await reportProgressAsync(prgBox.ReportProgress).ConfigureAwait(false);
47
@@ -51,6 +60,10 @@ await Application.Current.Dispatcher.InvokeAsync(() =>
51
60
prgBox?.Close();
52
61
53
62
63
64
65
+ prgBox?.Close();
66
54
67
55
68
56
69
0 commit comments