Beispiel #1
0
 // Event raiser
 protected virtual void OnWorkFinished()
 {
     WorkRunning?.Invoke(this, new WxGetEventArgs()
     {
         Running = false
     });
 }
Beispiel #2
0
 // Event raiser
 protected virtual void OnWorkStarted()
 {
     WorkRunning?.Invoke(this, new WxGetEventArgs()
     {
         Running = true
     });
 }