TaskDialogResult Enumeration
Represents possible dialog results of a
TaskDialog.
Namespace: KGySoft.WinForms.ComponentsAssembly: KGySoft.WinForms (in KGySoft.WinForms.dll) Version: 5.0.1
public enum TaskDialogResult
Public Enumeration TaskDialogResult
public enum class TaskDialogResult
| None | 0 |
Indicates none of the possible results.
Usually means that the dialog is not closed yet.
|
| OK | 1 |
Indicates the "OK" dialog result.
Usually means that the dialog was closed by clicking the "OK" button.
|
| Cancel | 2 |
Indicates the "Cancel" dialog result.
Usually means that the dialog was closed by either clicking the "Cancel" button, or pressing Esc or Alt+F4 buttons.
|
| Retry | 4 | |
| Yes | 6 | |
| No | 7 |
Indicates the "No" dialog result.
Usually means that the dialog was closed by clicking the "No" button.
|
| Close | 8 |
Indicates the "Close" dialog result.
Usually means that the dialog was closed by clicking the "Close" button.
|
| Custom | 9 |
Indicates a custom dialog result.
Usually means that the dialog was closed by clicking one of the custom buttons.
|