IDragDropTool.cs 316 B

12345678910
  1. namespace SHJX.Service.WorkFlowEdit
  2. {
  3. public interface IDragDropTool
  4. {
  5. void OnDragEnter(System.Windows.DragEventArgs e);
  6. void OnDragOver(System.Windows.DragEventArgs e);
  7. void OnDragLeave(System.Windows.DragEventArgs e);
  8. void OnDrop(System.Windows.DragEventArgs e);
  9. }
  10. }