DialogResult 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 identyfikatory wskazujące wartość zwracaną okna dialogowego.
public enum class DialogResult
[System.Runtime.InteropServices.ComVisible(true)]
public enum DialogResult
public enum DialogResult
[<System.Runtime.InteropServices.ComVisible(true)>]
type DialogResult =
type DialogResult =
Public Enum DialogResult
- Dziedziczenie
- Atrybuty
Pola
Abort | 3 | Zwracana wartość okna dialogowego to |
Cancel | 2 | Zwracana wartość okna dialogowego to |
Continue | 11 | Zwracana wartość okna dialogowego to Kontynuuj (zwykle wysyłane z przycisku oznaczonego etykietą Kontynuuj). |
Ignore | 5 | Zwracana wartość okna dialogowego to |
No | 7 | Zwracana wartość okna dialogowego to |
None | 0 |
|
OK | 1 | Zwracana wartość okna dialogowego to |
Retry | 4 | Zwracana wartość okna dialogowego to |
TryAgain | 10 | Zwracana wartość okna dialogowego to Spróbuj ponownie (zwykle wysyłane z przycisku oznaczonego etykietą Spróbuj ponownie). |
Yes | 6 | Zwracana wartość okna dialogowego to |
Przykłady
Poniższy przykład kodu pokazuje, jak wyświetlić MessageBox element z opcjami obsługiwanymi przez to przeciążenie elementu Show. Po sprawdzeniu, czy zmienna ciągu jest pusta, ServerName
w przykładzie jest wyświetlana MessageBoxwartość , oferując użytkownikowi opcję anulowania operacji. Show Jeśli wartość zwracana metody ma wartość Tak, formularz, który wyświetlił MessageBox wartość , jest zamknięty.
private:
void validateUserEntry5()
{
// 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 );
if ( result == ::DialogResult::Yes )
{
// Closes the parent form.
this->Close();
}
}
}
private void validateUserEntry5()
{
// 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);
if(result == DialogResult.Yes)
{
// Closes the parent form.
this.Close();
}
}
}
Private Sub ValidateUserEntry5()
' 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)
' 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
Uwagi
Właściwość Button.DialogResult i Form.ShowDialog metoda używają tej wyliczenia.