This commit is contained in:
ShrlAlgo
2025-07-11 09:20:23 +08:00
parent c7b104f44f
commit 4d35cadb56
840 changed files with 102347 additions and 11595 deletions

View File

@@ -7,27 +7,19 @@ namespace WPFluent.Controls;
public enum InfoBadgeSeverity
{
/// <summary>
/// Communicates that the InfoBadge is displaying general information that requires the user's attention.
/// 注意
/// </summary>
Attention = 0,
/// <summary>
/// Communicates that the InfoBadge is displaying general information that requires the user's attention.
/// 成功
/// </summary>
Informational = 1,
Success = 1,
/// <summary>
/// Communicates that the InfoBadge is displaying general information that requires the user's attention.
/// 警告
/// </summary>
Success = 2,
Caution = 2,
/// <summary>
/// Communicates that the InfoBadge is displaying general information that requires the user's attention.
/// 紧要、关键
/// </summary>
Caution = 3,
/// <summary>
/// Communicates that the InfoBadge is displaying general information that requires the user's attention.
/// </summary>
Critical = 4,
Critical = 3,
}