Ejemplo n.º 1
0
 /// <summary>
 ///     On every tick, we update the progress of each OneFileTransferViewModel. We need to do this periodically to not to
 ///     block the UI thread and maintain a fluid display of progress changes.
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void ProgressDispatcherTimerTickHandler(object sender, object e)
 {
     _fileTransferViewModel.UpDateProgress();
 }