Files
ShrlAlgoToolkit/WPFluent/Controls/ControlAppearance.cs
ShrlAlgo 4d35cadb56 更新
2025-07-11 09:20:23 +08:00

46 lines
720 B
C#

namespace WPFluent.Controls;
/// <summary>
/// Types of the available color accents of the controls.
/// </summary>
public enum ControlAppearance
{
/// <summary>
/// 主色调
/// </summary>
Primary,
/// <summary>
/// 过渡色
/// </summary>
Secondary,
/// <summary>
/// 强调色
/// </summary>
Accent,
//其他的强调色
/// <summary>
/// 蓝色
/// </summary>
Attention,
/// <summary>
/// 绿色
/// </summary>
Success,
/// <summary>
/// 橘色
/// </summary>
Caution,
/// <summary>
/// 红色
/// </summary>
Critical,
/// <summary>
/// 透明
/// </summary>
Transparent,
}