You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
513 B

  1. using System.ComponentModel;
  2. namespace BPA.UIControl.Enums
  3. {
  4. /// <summary>
  5. /// 主题模式
  6. /// </summary>
  7. public enum ThemeMode
  8. {
  9. /// <summary>
  10. /// 亮色
  11. /// </summary>
  12. [Description("亮色")]
  13. Light = 0,
  14. /// <summary>
  15. /// 暗色
  16. /// </summary>
  17. [Description("暗色")]
  18. Dark,
  19. /// <summary>
  20. /// 跟随系统
  21. /// </summary>
  22. [Description("跟随系统")]
  23. System,
  24. }
  25. }