Example #1
0
 void _copyEngine_OnBeginDelete(CopyEngine.BeginCopyEventArgs e)
 {
     _copyViewer.CursorMode    = CursorModes.Wait;
     _copyViewer.StatusMessage = "Deleting ...";
     ActionBeginProgress(_overallProgress);
     _copyViewer.OverallProgress = _overallProgress;
 }
Example #2
0
 void _copyEngine_OnBeginCount(CopyEngine.BeginCopyEventArgs e)
 {
     _copyViewer.CursorMode    = CursorModes.Wait;
     _copyViewer.StatusMessage = "Counting ...";
     _TotalBytes = 0;
     _SoFarBytes = 0;
     _currentActivityProgress = new ProgressLink();
     ActionBeginProgress(_currentActivityProgress);
     _copyViewer.CurrentActivityProgress = _currentActivityProgress;
 }