MessageBoxDefaultButton 列挙型

定義

MessageBox に表示する既定のボタンを定義する定数を指定します。

public enum class MessageBoxDefaultButton
public enum MessageBoxDefaultButton
type MessageBoxDefaultButton = 
Public Enum MessageBoxDefaultButton
継承
MessageBoxDefaultButton

フィールド

Button1 0

メッセージ ボックスの 1 番目のボタンが既定のボタンです。

Button2 256

メッセージ ボックスの 2 番目のボタンが既定のボタンです。

Button3 512

メッセージ ボックスの 3 番目のボタンが既定のボタンです。

Button4 768

メッセージ ボックスの [ヘルプ] ボタンが既定のボタンであることを指定します。

次のコード例では、 のこのオーバーロードShowでサポートされているオプションを使用して を表示MessageBoxする方法を示します。 文字列変数 ServerName( ) が空であることを確認した後、この例では、 に質問ボックス アイコンが表示され、操作を取り消すオプションがユーザーに提供されます MessageBox 。 この例では、 RightAlign 列挙体の メンバーを MessageBoxOptions 使用して、テキストをダイアログ ボックスの右端に配置します。 メソッドの Show 戻り値が に Yes評価された場合、 を表示した MessageBox フォームは閉じられます。

private:
   void validateUserEntry2()
   {
      // Checks the value of the text.
      if ( serverName->Text->Length == 0 )
      {
         // Initializes the variables to pass to the MessageBox::Show method.
         String^ message = "You did not enter a server name. Cancel this operation?";
         String^ caption = "No Server Name Specified";
         MessageBoxButtons buttons = MessageBoxButtons::YesNo;
         System::Windows::Forms::DialogResult result;
         
         // Displays the MessageBox.
         result = MessageBox::Show( this, message, caption, buttons, MessageBoxIcon::Question, MessageBoxDefaultButton::Button1, MessageBoxOptions::RightAlign );
         if ( result == ::DialogResult::Yes )
         {
            // Closes the parent form.
            this->Close();
         }
      }
   }

private void validateUserEntry2()
{

    // Checks the value of the text.

    if(serverName.Text.Length == 0)
    {

        // Initializes the variables to pass to the MessageBox.Show method.

        string message = "You did not enter a server name. Cancel this operation?";
        string caption = "No Server Name Specified";
        MessageBoxButtons buttons = MessageBoxButtons.YesNo;
        DialogResult result;

        // Displays the MessageBox.

        result = MessageBox.Show(this, message, caption, buttons,
            MessageBoxIcon.Question, MessageBoxDefaultButton.Button1, 
            MessageBoxOptions.RightAlign);

        if(result == DialogResult.Yes)
        {

            // Closes the parent form.

            this.Close();
        }
    }
}
Private Sub ValidateUserEntry2()


    ' Checks the value of the text.

    If ServerName.Text.Length = 0 Then

        ' Initializes variables to pass to the MessageBox.Show method.

        Dim Message As String = "You did not enter a server name. Cancel this operation?"
        Dim Caption As String = "No Server Name Specified"
        Dim Buttons As Integer = MessageBoxButtons.YesNo

        Dim Result As DialogResult

        'Displays a MessageBox using the Question icon and specifying the No button as the default.

        Result = MessageBox.Show(Me, Message, Caption, MessageBoxButtons.YesNo, _
            MessageBoxIcon.Question, MessageBoxDefaultButton.Button1, MessageBoxOptions.RightAlign)


        ' Gets the result of the MessageBox display.

        If Result = System.Windows.Forms.DialogResult.Yes Then

            ' Closes the parent form.

            Me.Close()

        End If

    End If

End Sub

注釈

この列挙は、MessageBox クラスで使用します。

適用対象