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,24 +7,19 @@ namespace WPFluent.Controls;
public enum InfoBarSeverity
{
/// <summary>
/// Communicates that the InfoBar is displaying general information that requires the user's attention.
/// 注意
/// </summary>
Informational = 0,
Attention = 0,
/// <summary>
/// Communicates that the InfoBar is displaying information regarding a long-running and/or background task that has
/// completed successfully.
/// 成功
/// </summary>
Success = 1,
/// <summary>
/// Communicates that the InfoBar is displaying information regarding a condition that might cause a problem in the
/// future.
/// 警告
/// </summary>
Warning = 2,
Caution = 2,
/// <summary>
/// Communicates that the InfoBar is displaying information regarding an error or problem that has occurred.
/// 紧要、关键
/// </summary>
Error = 3,
Critical = 3,
}