MessageBoxDefaultButton Výčet

Definice

Určuje konstanty definující výchozí tlačítko v objektu MessageBox.

public enum class MessageBoxDefaultButton
public enum MessageBoxDefaultButton
type MessageBoxDefaultButton = 
Public Enum MessageBoxDefaultButton
Dědičnost
MessageBoxDefaultButton

Pole

Button1 0

První tlačítko v okně se zprávou je výchozí tlačítko.

Button2 256

Druhé tlačítko v okně se zprávou je výchozí tlačítko.

Button3 512

Třetí tlačítko v okně se zprávou je výchozí tlačítko.

Button4 768

Určuje, že tlačítko Nápověda v okně se zprávou by mělo být výchozím tlačítkem.

Příklady

Následující příklad kódu ukazuje, jak zobrazit MessageBox s možnostmi podporovanými tímto přetížením .Show Po ověření, ServerNameže je řetězcová proměnná prázdná, se v příkladu zobrazí MessageBox ikona pole s otazníkem, která uživateli nabídne možnost operaci zrušit. Příklad používá RightAlign člen výčtu MessageBoxOptions k zarovnání textu k pravému okraji dialogového okna. Pokud se vrácená Show hodnota metody vyhodnotí jako Yes, formulář, který zobrazil MessageBox , se zavře.

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

Poznámky

Tento výčet je používán MessageBox třídou .

Platí pro