Movatterモバイル変換


[0]ホーム

URL:


Skip to main contentSkip to in-page navigation

This browser is no longer supported.

Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.

Download Microsoft EdgeMore info about Internet Explorer and Microsoft Edge
Table of contentsExit editor mode

DialogResult Enum

Definition

Namespace:
System.Windows.Forms
Assembly:
System.Windows.Forms.dll
Source:
DialogResult.cs
Source:
DialogResult.cs
Source:
DialogResult.cs
Source:
DialogResult.cs

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Specifies identifiers to indicate the return value of a dialog box.

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
Inheritance
Attributes

Fields

NameValueDescription
None0

Nothing is returned from the dialog box. This means that the modal dialog continues running.

OK1

The dialog box return value isOK (usually sent from a button labeled OK).

Cancel2

The dialog box return value isCancel (usually sent from a button labeled Cancel).

Abort3

The dialog box return value isAbort (usually sent from a button labeled Abort).

Retry4

The dialog box return value isRetry (usually sent from a button labeled Retry).

Ignore5

The dialog box return value isIgnore (usually sent from a button labeled Ignore).

Yes6

The dialog box return value isYes (usually sent from a button labeled Yes).

No7

The dialog box return value isNo (usually sent from a button labeled No).

TryAgain10

The dialog box return value is Try Again (usually sent from a button labeled Try Again).

Continue11

The dialog box return value is Continue (usually sent from a button labeled Continue).

Examples

The following code example demonstrates how to display aMessageBox with the options supported by this overload ofShow. After verifying that a string variable,ServerName, is empty, the example displays aMessageBox, offering the user the option to cancel the operation. If theShow method's return value evaluates to Yes, the form that displayed theMessageBox 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 IfEnd Sub

Remarks

TheButton.DialogResult property and theForm.ShowDialog method use this enumeration.

Applies to

See also

Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, seeour contributor guide.

Feedback

Was this page helpful?

YesNoNo

Need help with this topic?

Want to try using Ask Learn to clarify or guide you through this topic?

Suggest a fix?

In this article

Was this page helpful?

YesNo
NoNeed help with this topic?

Want to try using Ask Learn to clarify or guide you through this topic?

Suggest a fix?