Example #1
0
 void Download_DownloadUpdate(object sender, FileDownloadingEventArgs e)
 {
     pgbDownloadProgress.Value = e.Percent;
     //UpdateStatus("Downloading: " + PMDCP.Core.IO.Files.GetFileSize(e.Position) + "/" + PMDCP.Core.IO.Files.GetFileSize(e.FileSize) + " (" + e.Percent + "%)");
 }
Example #2
0
 void Download_DownloadComplete(object sender, FileDownloadingEventArgs e)
 {
     pgbDownloadProgress.Hide();
     lblStatus.Show();
     UpdateStatus("Installing...");
 }