Guest User

Untitled

a guest
Aug 30th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. private async void DownloadProgress(DownloadOperation download)
  2. {
  3. if (download.Progress.TotalBytesToReceive != 0)
  4. {
  5. value = download.Progress.BytesReceived * 100 / download.Progress.TotalBytesToReceive;
  6. progbar.Value = value;
  7. }
  8. if (download.Progress.Status == BackgroundTransferStatus.Completed || value >= 100)
  9. {
  10. //msg de completado o download
  11. }
  12. }
Add Comment
Please, Sign In to add comment