DialogResult Enumeración
Definición
Especifica los identificadores que indicarán el valor devuelto por un cuadro de diálogo.Specifies identifiers to indicate the return value of a dialog box.
public enum class DialogResult
[System.Runtime.InteropServices.ComVisible(true)]
public enum DialogResult
type DialogResult =
Public Enum DialogResult
- Herencia
- Atributos
Campos
Abort | 3 | El valor devuelto por el cuadro de diálogo es |
Cancel | 2 | El valor devuelto por el cuadro de diálogo es |
Ignore | 5 | El valor devuelto por el cuadro de diálogo es |
No | 7 | El valor devuelto por el cuadro de diálogo es |
None | 0 | El cuadro de diálogo devuelve |
OK | 1 | El valor devuelto por el cuadro de diálogo es |
Retry | 4 | El valor devuelto por el cuadro de diálogo es |
Yes | 6 | El valor devuelto por el cuadro de diálogo es |
Ejemplos
En el ejemplo de código siguiente se muestra cómo MessageBox mostrar un con las opciones admitidas por Showesta sobrecarga de.The following code example demonstrates how to display a MessageBox with the options supported by this overload of Show. Después de comprobar que una variable de cadena ServerName
,, está vacía, en el ejemplo MessageBoxse muestra un, que ofrece al usuario la opción de cancelar la operación.After verifying that a string variable, ServerName
, is empty, the example displays a MessageBox, offering the user the option to cancel the operation. Si el Show valor devuelto del método se evalúa como sí, el formulario que muestra MessageBox el está cerrado.If the Show method's return value evaluates to Yes, the form that displayed the MessageBox is closed.
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
Comentarios
La Button.DialogResult propiedad y el Form.ShowDialog método usan esta enumeración.The Button.DialogResult property and the Form.ShowDialog method use this enumeration.