DialogResult
Namespace: Wisej.Web
Assembly: Wisej.Framework (3.5.0.0)
Specifies the return value of a dialog box.
- C#
- VB.NET
public enum DialogResult : Enum
Public Enum DialogResult As [Enum]
Fields
| 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. |
| 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). |
Used By
| Name | Description |
|---|---|
| CommonDialog.ShowDialog | Runs a common dialog box with a default owner. |
| Button.DialogResult | Returns or sets a value that is returned to the parent form when the button is clicked. |
| Form.DialogResult | Returns or sets the dialog result for the form. |
| Form.ShowDialog | Shows the form as a modal dialog box. When the onclose is specified, the dialog is modal only in the browser. |
| Label.DialogResult | Returns or sets a value that is returned to the parent form when the button is clicked. |
| MessageBox.Show | Displays a message box with the specified text, caption, buttons, icon, default button, options, and Help button. |
| PictureBox.DialogResult | Returns or sets a value that is returned to the parent form when the button is clicked. |
| IButtonControl.DialogResult | Returns or sets the value returned to the parent form when the button is clicked. |
| IWisejEditorService.ShowDialog | Shows the specified Form and returns its DialogResult when the user closes it. |