예제 #1
0
파일: Widget.cs 프로젝트: joncham/xwt
 protected internal virtual void OnDragFinished(DragFinishedEventArgs args)
 {
     if (currentDragOperation != null) {
         var dop = currentDragOperation;
         currentDragOperation = null;
         dop.NotifyFinished (args);
     }
 }
예제 #2
0
파일: Widget.cs 프로젝트: joncham/xwt
 protected DragStartData InternalDragStarted()
 {
     DragStartedEventArgs args = new DragStartedEventArgs ();
     args.DragOperation = new DragOperation (this);
     currentDragOperation = args.DragOperation;
     OnDragStarted (args);
     return args.DragOperation.GetStartData ();
 }
예제 #3
0
파일: Widget.cs 프로젝트: joncham/xwt
 public DragOperation CreateDragOperation()
 {
     currentDragOperation = new DragOperation (this);
     return currentDragOperation;
 }