예제 #1
0
 void _map_ProgressNotificationChanged(object sender, ProgressNotificationEventArgs e)
 {
     MainApplication.Instance.MainWindow.Text = string.Format("{0} ({1} of {2})", e.DetailName, e.DetailProgress, e.OverallProgress);
 }
예제 #2
0
 // Invoke the Changed event; called whenever list changes
 protected virtual void OnProgress(ProgressNotificationEventArgs e)
 {
     if (ProgressNotificationChanged != null)
         ProgressNotificationChanged(this, e);
 }