整理控件库

This commit is contained in:
GG Z
2025-05-05 17:04:06 +08:00
parent 74532b77be
commit 3eaad7566e
283 changed files with 2156 additions and 17846 deletions

View 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,
}