TagLocation.cs 519 B

12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace PaintDotNet.Base.Enum
  7. {
  8. public enum TagLocation
  9. {
  10. /// <summary>
  11. /// 左上
  12. /// </summary>
  13. UpLeft,
  14. /// <summary>
  15. /// 右上
  16. /// </summary>
  17. UpRight,
  18. /// <summary>
  19. ///左下
  20. /// </summary>
  21. DownLeft,
  22. /// <summary>
  23. ///右下
  24. /// </summary>
  25. DownRight
  26. }
  27. }