예제 #1
0
 protected virtual void OnPausing(object arguments)
 {
     Delegates.SimpleEvent handler = Pausing;
     if (handler != null)
     {
         handler(this, arguments);
     }
 }
예제 #2
0
 private void OnHidingChanged(object arguments)
 {
     Delegates.SimpleEvent handler = HidingChanged;
     if (handler != null)
     {
         handler(this, arguments);
     }
 }
예제 #3
0
 protected virtual void OnResumed(object arguments)
 {
     Delegates.SimpleEvent handler = Resumed;
     if (handler != null)
     {
         handler(this, arguments);
     }
 }