mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 19:22:53 +01:00
Add progress bar to GetDictionaries form
This commit is contained in:
parent
a7aacf3cfe
commit
e8965768df
@ -146,6 +146,10 @@ namespace Nikse.SubtitleEdit.Forms
|
|||||||
|
|
||||||
var wc = new WebClient { Proxy = Utilities.GetProxy() };
|
var wc = new WebClient { Proxy = Utilities.GetProxy() };
|
||||||
wc.DownloadDataCompleted += wc_DownloadDataCompleted;
|
wc.DownloadDataCompleted += wc_DownloadDataCompleted;
|
||||||
|
wc.DownloadProgressChanged += (o, args) =>
|
||||||
|
{
|
||||||
|
labelPleaseWait.Text = Configuration.Settings.Language.General.PleaseWait + " " + args.ProgressPercentage + "%";
|
||||||
|
};
|
||||||
wc.DownloadDataAsync(new Uri(url));
|
wc.DownloadDataAsync(new Uri(url));
|
||||||
}
|
}
|
||||||
catch (Exception exception)
|
catch (Exception exception)
|
||||||
|
Loading…
Reference in New Issue
Block a user