📄 dialogmessageboxicon.cs
字号:
using System;
namespace MetaBuilders.WebControls {
/// <summary>
/// Icons that can be displayed in a <see cref="DialogMessageBox"/>.
/// </summary>
public enum DialogMessageBoxIcon {
/// <summary>
/// No icon is displayed.
/// </summary>
None = 0,
/// <summary>
/// An excalmation point in yellow triangle.
/// </summary>
Exclamation = 1,
/// <summary>
/// A lowercase "i" in a bubble.
/// </summary>
Information = 2,
/// <summary>
/// A question mark in a bubble.
/// </summary>
Question = 3,
/// <summary>
/// A white "X" in a red circle.
/// </summary>
Stop = 4
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -