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 と a を含ButtonTextBoxむ既存のフォームからメソッドを呼び出す必要があります。

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 クラスで使用します。 この列挙体の各メンバーの説明には、シンボルの一般的な表現が含まれています。 表示される実際のグラフィックは、オペレーティング システム定数の関数です。 現在の実装では、複数の値が割り当てられた 4 つの一意のシンボルがあります。

次の表に、さまざまなメッセージ ボックス アイコンを示します。

アイコン 名前
赤い円の中にある白い X マーク
青い円の中にある白い疑問符 Question
黄色い三角の中にある黒い感嘆符 感嘆
青い円の中にある白い小文字の i アスタリスク
赤い円の中にある白い X マーク Stop
赤い円の中にある白い X マーク エラー
黄色い三角の中にある黒い感嘆符 警告
青い円の中にある白い小文字の i Information

適用対象