重命名

This commit is contained in:
GG Z
2026-01-02 17:30:30 +08:00
parent 0e9db9a2b9
commit fa0d280130
245 changed files with 4405 additions and 4236 deletions

View File

@@ -0,0 +1,28 @@
namespace VariaStudio.Controls
{
/// <summary>
/// 通知位置枚举,用于指定通知在屏幕上的显示位置。
/// </summary>
public enum NotificationPlacement
{
/// <summary>
/// 通知显示位置为屏幕的右上角。此枚举值用于指定通知在用户界面中的具体展示位置。
/// </summary>
TopRight,
/// <summary>
///
/// </summary>
TopLeft,
/// <summary>
/// 通知显示位置为屏幕的右下角。此枚举值用于指定通知在用户界面中的具体展示位置。
/// </summary>
BottomRight,
/// <summary>
/// 通知显示位置为屏幕的左下角。此枚举值用于指定通知在用户界面中的具体展示位置。
/// </summary>
BottomLeft
}
}