MessageBoxIcon 枚举

定义

指定常数来定义要显示的信息。

public enum class MessageBoxIcon
public enum MessageBoxIcon
type MessageBoxIcon = 
Public Enum MessageBoxIcon
继承
MessageBoxIcon

字段

Asterisk 64

消息框包含一个符号,该符号在圆圈中包含小写字母 i。

Error 16

消息框包含一个符号,该符号包含一个红色背景圆圈,圆圈中为白色 X 符号。

Exclamation 48

消息框包含一个符号,该符号包含一个黄色背景三角形,三角形中为感叹号。

Hand 16

消息框包含一个符号,该符号包含一个红色背景圆圈,圆圈中为白色 X 符号。

Information 64

消息框包含一个符号,该符号在圆圈中包含小写字母 i。

None 0

消息框未包含符号。

Question 32

消息框包含一个符号,该符号包含一个圆圈,圆圈中为问号。 不再建议使用问号消息图标,因为这种图标无法清楚地表示特定类型的消息,并且作为问题的消息表述可应用于任何消息类型。 此外,用户可能会将问号符号与帮助信息符合混淆。 因此,请不要在消息框中使用问号符号。 系统继续支持它包含的内容,只为满足反向兼容性。

Stop 16

消息框包含一个符号,该符号包含一个红色背景圆圈,圆圈中为白色 X 符号。

Warning 48

消息框包含一个符号,该符号包含一个黄色背景三角形,三角形中为感叹号。

示例

下面的代码示例演示如何使用 a MessageBox 来通知用户缺少的 TextBox条目。 此示例要求从具有 a ButtonTextBox on 的现有窗体调用该方法。

private void Form1_FormClosing(object sender, FormClosingEventArgs e)  
{  
    const string message =  
        "Are you sure that you would like to close the form?";  
    const string caption = "Form Closing";  
    var result = MessageBox.Show(message, caption,  
                                 MessageBoxButtons.YesNo,  
                                 MessageBoxIcon.Exclamation);  

    // If the no button was pressed ...  
    if (result == DialogResult.No)  
    {  
        // cancel the closure of the form.  
        e.Cancel = true;  
    }  
}  
private:  
   void Form1_FormClosing(Object^ sender, FormClosingEventArgs^ e)  
   {  
      // If the no button was pressed ...  
      if ((MessageBox::Show(  
         "Are you sure that you would like to close the form?",   
         "Form Closing", MessageBoxButtons::YesNo,   
         MessageBoxIcon::Exclamation) == DialogResult::No))  
      {  
         // cancel the closure of the form.  
         e->Cancel = true;  
      }  
   }  
Private Sub Form1_FormClosing( _  
    ByVal sender As System.Object, _  
    ByVal e As System.Windows.Forms.FormClosingEventArgs) _  
    Handles MyBase.FormClosing  

    Dim message As String = _  
            "Are you sure that you would like to close the form?"  
    Dim caption As String = "Form Closing"  
    Dim result = MessageBox.Show(message, caption, _  
                                 MessageBoxButtons.YesNo, _  
                                 MessageBoxIcon.Exclamation)  

    ' If the no button was pressed ...  
    If (result = DialogResult.No) Then  
        ' cancel the closure of the form.  
        e.Cancel = True  
    End If  
End Sub  

注解

此枚举由 MessageBox 类使用。 此枚举的每个成员的说明都包含符号的典型表示形式。 显示的实际图形是操作系统常量的功能。 在当前实现中,有四个唯一符号,其中分配了多个值。

下表显示了不同的消息框图标。

图标 “属性”
红色圆圈中的白色 X
蓝色圆圈中的白色问号 问题
黄色三角形中的黑色感叹号 惊叹号
蓝色圆圈中的白色小写 i 星号
红色圆圈中的白色 X 停止
红色圆圈中的白色 X 错误
黄色三角形中的黑色感叹号 警告
蓝色圆圈中的白色小写 i 信息

适用于