Files
ShrlAlgoToolkit/WPFluent/Controls/InfoBar/InfoBarSeverity.cs

26 lines
397 B
C#
Raw Normal View History


// ReSharper disable once CheckNamespace
namespace WPFluent.Controls;
public enum InfoBarSeverity
{
/// <summary>
2025-07-11 09:20:23 +08:00
/// 注意
/// </summary>
2025-07-11 09:20:23 +08:00
Attention = 0,
/// <summary>
2025-07-11 09:20:23 +08:00
/// 成功
/// </summary>
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,
}