GlowBitmapPart.cs 311 B

123456789101112131415161718192021
  1. namespace HandyControl.Data;
  2. internal enum GlowBitmapPart
  3. {
  4. CornerTopLeft,
  5. CornerTopRight,
  6. CornerBottomLeft,
  7. CornerBottomRight,
  8. TopLeft,
  9. Top,
  10. TopRight,
  11. LeftTop,
  12. Left,
  13. LeftBottom,
  14. BottomLeft,
  15. Bottom,
  16. BottomRight,
  17. RightTop,
  18. Right,
  19. RightBottom
  20. }