MessageBoxDefaultButton Enumeration

Definition

Gibt Konstanten an, die die Standardschaltfläche in MessageBox definieren.

public enum class MessageBoxDefaultButton
public enum MessageBoxDefaultButton
type MessageBoxDefaultButton = 
Public Enum MessageBoxDefaultButton
Vererbung
MessageBoxDefaultButton

Felder

Button1 0

Die erste Schaltfläche im Meldungsfeld ist die Standardschaltfläche.

Button2 256

Die zweite Schaltfläche im Meldungsfeld ist die Standardschaltfläche.

Button3 512

Die dritte Schaltfläche im Meldungsfeld ist die Standardschaltfläche.

Button4 768

Gibt an, dass die Schaltfläche Hilfe im Meldungsfeld die Standardschaltfläche sein soll.

Beispiele

Im folgenden Codebeispiel wird veranschaulicht, wie ein MessageBox mit den Optionen angezeigt wird, die von dieser Überladung von Showunterstützt werden. Nachdem überprüft wurde, ob eine Zeichenfolgenvariable leer ist, ServerNamewird im Beispiel ein MessageBox mit einem Fragefeldsymbol angezeigt, das dem Benutzer die Option zum Abbrechen des Vorgangs bietet. Im Beispiel wird das RightAlign Element der MessageBoxOptions Enumeration verwendet, um den Text am rechten Rand des Dialogfelds auszurichten. Wenn der Rückgabewert der Show Methode nach Yesausgewertet wird, wird das angezeigte MessageBox Formular geschlossen.

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

Hinweise

Diese Enumeration wird von der MessageBox-Klasse verwendet.

Gilt für: