Files
ShrlAlgoToolkit/WPFluent/Controls/InfoBadge/InfoBadgeSeverity.cs

26 lines
399 B
C#
Raw Normal View History


// ReSharper disable once CheckNamespace
namespace WPFluent.Controls;
public enum InfoBadgeSeverity
{
/// <summary>
2025-07-11 09:20:23 +08:00
/// 注意
/// </summary>
Attention = 0,
/// <summary>
2025-07-11 09:20:23 +08:00
/// 成功
/// </summary>
2025-07-11 09:20:23 +08:00
Success = 1,
/// <summary>
2025-07-11 09:20:23 +08:00
/// 警告
/// </summary>
2025-07-11 09:20:23 +08:00
Caution = 2,
/// <summary>
2025-07-11 09:20:23 +08:00
/// 紧要、关键
/// </summary>
2025-07-11 09:20:23 +08:00
Critical = 3,
}