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