MessageBoxButtons Перечисление

Определение

Задает константы, определяющие кнопки, которые нужно отображать в окне MessageBox.

public enum class MessageBoxButtons
public enum MessageBoxButtons
type MessageBoxButtons = 
Public Enum MessageBoxButtons
Наследование
MessageBoxButtons

Поля

AbortRetryIgnore 2

Окно сообщения содержит кнопки "Прервать", "Повторить" и "Пропустить".

CancelTryContinue 6

Указывает, что в окне сообщения содержатся кнопки Отмена, Повторить попытку и Продолжить.

OK 0

Окно сообщения содержит кнопку "ОК".

OKCancel 1

Окно сообщения содержит кнопки "ОК" и "Отмена".

RetryCancel 5

Окно сообщения содержит кнопки "Повторить" и "Отмена".

YesNo 4

Окно сообщения содержит кнопки "Да" и "Нет".

YesNoCancel 3

Окно сообщения содержит кнопки "Да", "Нет" и "Отмена".

Примеры

В следующем примере кода показано, как использовать MessageBox , чтобы предоставить пользователю возможность запретить закрытие формы. В этом примере требуется, чтобы метод вызывался из FormClosing события формы.

private:
   void Form1_FormClosing(Object^ sender, FormClosingEventArgs^ e)
   {
      // If the no button was pressed ...
      if ((MessageBox::Show(
         "Are you sure that you would like to close the form?", 
         "Form Closing", MessageBoxButtons::YesNo, 
         MessageBoxIcon::Question) == DialogResult::No))
      {
         // cancel the closure of the form.
         e->Cancel = true;
      }
   }
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
    const string message =
        "Are you sure that you would like to close the form?";
    const string caption = "Form Closing";
    var result = MessageBox.Show(message, caption,
                                 MessageBoxButtons.YesNo,
                                 MessageBoxIcon.Question);

    // If the no button was pressed ...
    if (result == DialogResult.No)
    {
        // cancel the closure of the form.
        e.Cancel = true;
    }
}
Private Sub Form1_FormClosing( _
    ByVal sender As System.Object, _
    ByVal e As System.Windows.Forms.FormClosingEventArgs) _
    Handles MyBase.FormClosing

    Dim message As String = _
            "Are you sure that you would like to close the form?"
    Dim caption As String = "Form Closing"
    Dim result = MessageBox.Show(message, caption, _
                                 MessageBoxButtons.YesNo, _
                                 MessageBoxIcon.Question)

    ' If the no button was pressed ...
    If (result = DialogResult.No) Then
        ' cancel the closure of the form.
        e.Cancel = True
    End If
End Sub

Комментарии

Это перечисление используется классом MessageBox.

Применяется к

См. также раздел