| 12345678910111213 |
- using System;
- using System.Windows;
- namespace SHJX.Service.WorkFlowEdit
- {
- public interface IMoveResizeTool
- {
- void BeginDrag(Point start, DiagramItem item, DragThumbKinds kind);
- void DragTo(Vector vector);
- bool CanDrop();
- void EndDrag(bool doCommit);
- }
- }
|