DragThumbKinds.cs 295 B

12345678910111213141516171819
  1. using System;
  2. namespace SHJX.Service.WorkFlowEdit
  3. {
  4. [Flags]
  5. public enum DragThumbKinds
  6. {
  7. None = 0,
  8. Top = 1,
  9. Left = 2,
  10. Bottom = 4,
  11. Right = 8,
  12. Center = 16,
  13. TopLeft = Top | Left,
  14. TopRight = Top | Right,
  15. BottomLeft = Bottom | Left,
  16. BottomRight = Bottom | Right
  17. }
  18. }