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