Button.DialogResult Property
Gets or sets a value that is returned to the parent form when the button is clicked.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Property Value
Type: System.Windows.Forms.DialogResultOne of the DialogResult values. The default value is None.
Implements
IButtonControl.DialogResult| Exception | Condition |
|---|---|
| InvalidEnumArgumentException |
The value assigned is not one of the DialogResult values. |
If the DialogResult for this property is set to anything other than None, and if the parent form was displayed through the ShowDialog method, clicking the button closes the parent form without your having to hook up any events. The form's DialogResult property is then set to the DialogResult of the button when the button is clicked.
For example, to create a "Yes/No/Cancel" dialog box, simply add three buttons and set their DialogResult properties to Yes, No, and Cancel.
The following code example creates a Button, sets its DialogResult property to OK, and adds it to a Form.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.