Files
ShrlAlgoToolkit/WPFluent/Appearance/ThemeType.cs

26 lines
455 B
C#
Raw Normal View History

2025-04-24 20:56:44 +08:00
namespace WPFluent.Appearance;
/// <summary>
/// Theme in which an application using WPF UI is displayed.
/// </summary>
2025-05-05 17:04:06 +08:00
public enum ThemeType
{
2025-05-05 17:04:06 +08:00
Unknow = 0,
/// <summary>
2025-05-05 17:04:06 +08:00
/// 明主题.
/// </summary>
2025-05-05 17:04:06 +08:00
Light,
/// <summary>
2025-05-05 17:04:06 +08:00
/// 暗主题.
/// </summary>
2025-05-05 17:04:06 +08:00
Dark,
/// <summary>
2025-05-05 17:04:06 +08:00
/// 明对比度主题.
/// </summary>
2025-05-05 17:04:06 +08:00
HcWhite,
/// <summary>
2025-05-05 17:04:06 +08:00
/// 暗对比度主题
/// </summary>
2025-05-05 17:04:06 +08:00
HcBlack,
}