MessageBoxOptions Výčet

Definice

Určuje možnosti pro MessageBox.

Tento výčet podporuje bitové kombinace hodnot jeho členů.

public enum class MessageBoxOptions
[System.Flags]
public enum MessageBoxOptions
[<System.Flags>]
type MessageBoxOptions = 
Public Enum MessageBoxOptions
Dědičnost
MessageBoxOptions
Atributy

Pole

DefaultDesktopOnly 131072

Okno se zprávou se zobrazí na aktivní ploše. Tato konstanta se podobá ServiceNotifications tím rozdílem, že systém zobrazí okno se zprávou pouze na výchozí ploše stanice interaktivního okna. Aplikace, která zobrazila okno zprávy, ztratí fokus a okno se zprávou se zobrazí bez použití vizuálních stylů. Další informace najdete v tématu Vykreslovací ovládací prvky s vizuálními styly.

RightAlign 524288

Text pole zprávy je zarovnaný doprava.

RtlReading 1048576

Určuje, že text pole zprávy se zobrazí s pořadím čtení zprava doleva.

ServiceNotification 2097152

Okno se zprávou se zobrazí na aktivní ploše. Volající je služba, která uživatele upozorňuje na událost. Show zobrazí okno se zprávou na aktuální aktivní ploše, a to i v případě, že k počítači není přihlášený žádný uživatel.

Příklady

Následující příklad ukazuje, jak zobrazit MessageBox s možnostmi podporovanými přetíženími MessageBox.Show , které obsahují options parametr. 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á člen výčtu MessageBoxOptions.RightAlign k zarovnání textu k pravému okraji dialogového okna. Pokud se vrácená Show hodnota metody vyhodnotí jako DialogResult.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 .

Pokud nechcete zadat argument při volání metod na MessageBox, můžete místo toho předat hodnotu 0.

Platí pro