IMoveResizeTool.cs 302 B

12345678910111213
  1. using System;
  2. using System.Windows;
  3. namespace SHJX.Service.WorkFlowEdit
  4. {
  5. public interface IMoveResizeTool
  6. {
  7. void BeginDrag(Point start, DiagramItem item, DragThumbKinds kind);
  8. void DragTo(Vector vector);
  9. bool CanDrop();
  10. void EndDrag(bool doCommit);
  11. }
  12. }