Example #1
0
 public void OnDispatchedToUI(object sender, UIDispatcherEventArgs e)
 {
     if (DispatchedToUI != null)
     {
         DispatchedToUI(this, e);
     }
 }
Example #2
0
 void NodeLogic_DispatchedToUI(object sender, UIDispatcherEventArgs e)
 {
     Dispatcher.Invoke(e.ActionToDispatch);
 }
Example #3
0
 public void OnDispatchedToUI(object sender, UIDispatcherEventArgs e)
 {
     if (DispatchedToUI != null)
         DispatchedToUI(this, e);
 }
Example #4
0
 private void OnDispatchedToUI(object sender, UIDispatcherEventArgs e)
 {
     if (DispatchedToUI != null)
         DispatchedToUI(sender, e);
 }