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