다음을 통해 공유


MessageBoxIcon 열거형

표시할 정보를 정의하는 상수를 지정합니다.

네임스페이스: System.Windows.Forms
어셈블리: System.Windows.Forms(system.windows.forms.dll)

구문

‘선언
Public Enumeration MessageBoxIcon
‘사용 방법
Dim instance As MessageBoxIcon
public enum MessageBoxIcon
public enum class MessageBoxIcon
public enum MessageBoxIcon
public enum MessageBoxIcon

멤버

  멤버 이름 설명
Supported by the .NET Compact Framework Asterisk 메시지 상자에는 원 안에 소문자 i가 포함된 기호가 있습니다. 
Error 메시지 상자에는 빨간색 배경의 원 안에 흰색 X가 포함된 기호가 있습니다. 
Supported by the .NET Compact Framework Exclamation 메시지 상자에는 노란색 배경의 삼각형 안에 느낌표가 포함된 기호가 있습니다. 
Supported by the .NET Compact Framework Hand 메시지 상자에는 빨간색 배경의 원 안에 흰색 X가 포함된 기호가 있습니다. 
Information 메시지 상자에는 원 안에 소문자 i가 포함된 기호가 있습니다. 
Supported by the .NET Compact Framework None 메시지 상자에는 기호가 없습니다. 
Supported by the .NET Compact Framework Question 메시지 상자에는 원 안에 물음표가 포함된 기호가 있습니다. 
Stop 메시지 상자에는 빨간색 배경의 원 안에 흰색 X가 포함된 기호가 있습니다. 
Warning 메시지 상자에는 노란색 배경의 삼각형 안에 느낌표가 포함된 기호가 있습니다. 

설명

이 열거형은 MessageBox 클래스에서 사용됩니다. 이 열거형의 각 멤버에 대한 설명에는 기호의 일반적 표시가 포함됩니다. 운영 체제 상수의 함수 결과에 따라 실제 그래픽이 표시됩니다. 현재 구현에는 여러 값이 할당된 네 개의 고유한 기호가 있습니다.

예제

Private Sub button1_Click(sender As Object, e As System.EventArgs)
    If textBox1.Text = "" Then
        MessageBox.Show("You must enter a name.", "Name Entry Error", _
           MessageBoxButtons.OK, MessageBoxIcon.Exclamation)
    Else
        ' Code to act on the data entered would go here.
    End If
End Sub
private void button1_Click(object sender, System.EventArgs e) {
   if(textBox1.Text == "") {
      MessageBox.Show("You must enter a name.", "Name Entry Error",
         MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
   }
   else {
      // Code to act on the data entered would go here.
   }
}
private:
   void button1_Click( Object^ sender, System::EventArgs^ e )
   {
      if ( textBox1->Text->Equals( "" ) )
      {
         MessageBox::Show( "You must enter a name.", "Name Entry Error",
            MessageBoxButtons::OK, MessageBoxIcon::Exclamation );
      }
      else
      {
         // Code to act on the data entered would go here.
      }
   }
protected void button1_Click(Object sender, System.EventArgs e)
{
    if (textBox1.get_Text().Equals("")) {
        MessageBox.Show("You must enter a name.", "Name Entry Error",
            MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
    }
    else {
        // Code to act on the data entered would go here.
    } 
} //button1_Click

플랫폼

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework에서 모든 플래폼의 모든 버전을 지원하지는 않습니다. 지원되는 버전의 목록은 시스템 요구 사항을 참조하십시오.

버전 정보

.NET Framework

2.0, 1.1, 1.0에서 지원

.NET Compact Framework

2.0, 1.0에서 지원

참고 항목

참조

System.Windows.Forms 네임스페이스