功能更新
This commit is contained in:
28
Melskin/Controls/Notification/NotificationPlacement.cs
Normal file
28
Melskin/Controls/Notification/NotificationPlacement.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
namespace Melskin.Controls
|
||||
{
|
||||
/// <summary>
|
||||
/// 通知位置枚举,用于指定通知在屏幕上的显示位置。
|
||||
/// </summary>
|
||||
public enum NotificationPlacement
|
||||
{
|
||||
/// <summary>
|
||||
/// 通知显示位置为屏幕的右上角。此枚举值用于指定通知在用户界面中的具体展示位置。
|
||||
/// </summary>
|
||||
TopRight,
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
TopLeft,
|
||||
|
||||
/// <summary>
|
||||
/// 通知显示位置为屏幕的右下角。此枚举值用于指定通知在用户界面中的具体展示位置。
|
||||
/// </summary>
|
||||
BottomRight,
|
||||
|
||||
/// <summary>
|
||||
/// 通知显示位置为屏幕的左下角。此枚举值用于指定通知在用户界面中的具体展示位置。
|
||||
/// </summary>
|
||||
BottomLeft
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user