ILinkTool.cs 332 B

12345678910111213
  1. using System.Windows;
  2. namespace SHJX.Service.WorkFlowEdit
  3. {
  4. public interface ILinkTool
  5. {
  6. void BeginDrag(Point start, ILink link, LinkThumbKind thumb);
  7. void BeginDragNewLink(Point start, IPort port);
  8. void DragTo(Vector vector);
  9. bool CanDrop();
  10. void EndDrag(bool doCommit);
  11. }
  12. }