DialogResult Enumeration
.NET Framework 3.0
Specifies identifiers to indicate the return value of a dialog box.
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)
Assembly: System.Windows.Forms (in system.windows.forms.dll)
| Member name | Description | |
|---|---|---|
![]() | Abort | The dialog box return value is Abort (usually sent from a button labeled Abort). |
![]() | Cancel | The dialog box return value is Cancel (usually sent from a button labeled Cancel). |
![]() | Ignore | The dialog box return value is Ignore (usually sent from a button labeled Ignore). |
![]() | No | The dialog box return value is No (usually sent from a button labeled No). |
![]() | None | Nothing is returned from the dialog box. This means that the modal dialog continues running. |
![]() | OK | The dialog box return value is OK (usually sent from a button labeled OK). |
![]() | Retry | The dialog box return value is Retry (usually sent from a button labeled Retry). |
![]() | Yes | The dialog box return value is Yes (usually sent from a button labeled Yes). |
The Button.DialogResult property and the Form.ShowDialog method use this enumeration.
The following code example demonstrates how to display a MessageBox with the options supported by this overload of Show. After verifying that a string variable, ServerName, is empty, the example displays a MessageBox, offering the user the option to cancel the operation. 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; 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.get_Text().get_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.Equals(DialogResult.Yes)) {
// Closes the parent form.
this.Close();
}
}
} //ValidateUserEntry5
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.Community Additions
ADD
Show:
