Beispiel #1
0
 /// <summary>
 /// Override this method to be notified when the
 /// IsBusy property has changed.
 /// </summary>
 /// <param name="args">Event arguments.</param>
 protected virtual void OnBusyChanged(BusyChangedEventArgs args)
 {
     if (_busyChanged != null)
     {
         _busyChanged(this, args);
     }
 }
Beispiel #2
0
 void busy_BusyChanged(object sender, BusyChangedEventArgs e)
 {
     OnBusyChanged(e);
 }