| 12345678910111213141516171819 |
- using System;
- namespace SHJX.Service.WorkFlowEdit
- {
- [Flags]
- public enum DragThumbKinds
- {
- None = 0,
- Top = 1,
- Left = 2,
- Bottom = 4,
- Right = 8,
- Center = 16,
- TopLeft = Top | Left,
- TopRight = Top | Right,
- BottomLeft = Bottom | Left,
- BottomRight = Bottom | Right
- }
- }
|