整理控件库
This commit is contained in:
25
WPFluent/Appearance/ThemeType.cs
Normal file
25
WPFluent/Appearance/ThemeType.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
namespace WPFluent.Appearance;
|
||||
|
||||
/// <summary>
|
||||
/// Theme in which an application using WPF UI is displayed.
|
||||
/// </summary>
|
||||
public enum ThemeType
|
||||
{
|
||||
Unknow = 0,
|
||||
/// <summary>
|
||||
/// 明主题.
|
||||
/// </summary>
|
||||
Light,
|
||||
/// <summary>
|
||||
/// 暗主题.
|
||||
/// </summary>
|
||||
Dark,
|
||||
/// <summary>
|
||||
/// 明对比度主题.
|
||||
/// </summary>
|
||||
HcWhite,
|
||||
/// <summary>
|
||||
/// 暗对比度主题
|
||||
/// </summary>
|
||||
HcBlack,
|
||||
}
|
||||
Reference in New Issue
Block a user