예제 #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
파일: NodeModel.cs 프로젝트: w-fish/Dynamo
 private void OnDispatchedToUI(object sender, UIDispatcherEventArgs e)
 {
     if (DispatchedToUI != null)
         DispatchedToUI(sender, e);
 }