コード例 #1
0
 private void ThreadWatcher_DownloadStatus(ThreadWatcher watcher, DownloadStatusEventArgs args)
 {
     this.BeginInvoke(() => {
         SetDownloadStatus(watcher, args.DownloadType, args.CompleteCount, args.TotalCount);
         SetupWaitTimer();
     });
 }
コード例 #2
0
 private void OnDownloadStatus(DownloadStatusEventArgs e)
 {
     try { DownloadStatus?.Invoke(this, e); } catch { }
 }