MessageBoxButtons Wyliczenie
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Określa stałe definiujące, które przyciski mają być wyświetlane na obiekcie MessageBox.
public enum class MessageBoxButtons
public enum MessageBoxButtons
type MessageBoxButtons =
Public Enum MessageBoxButtons
- Dziedziczenie
Pola
AbortRetryIgnore | 2 | Pole komunikatu zawiera przyciski Przerwij, Ponów próbę i Ignoruj. |
CancelTryContinue | 6 | Określa, że okno komunikatu zawiera przyciski Anuluj, Spróbuj ponownie i Kontynuuj. |
OK | 0 | Pole komunikatu zawiera przycisk OK. |
OKCancel | 1 | Pole komunikatu zawiera przyciski OK i Anuluj. |
RetryCancel | 5 | Pole komunikatu zawiera przyciski Ponów próbę i Anuluj. |
YesNo | 4 | Pole komunikatu zawiera przyciski Tak i Nie. |
YesNoCancel | 3 | Pole komunikatu zawiera przyciski Tak, Nie i Anuluj. |
Przykłady
W poniższym przykładzie kodu pokazano, jak używać elementu , MessageBox aby dać użytkownikowi możliwość uniemożliwienia zamknięcia formularza. Ten przykład wymaga wywołania metody ze FormClosing zdarzenia formularza.
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
Uwagi
Ta wyliczenie jest używane przez klasę MessageBox .