TaskDialogStandardButtons Enumeration
Identifies the possible standard buttons that
can be displayed via
TaskDialog.
Namespace: KGySoft.WinForms.ComponentsAssembly: KGySoft.WinForms (in KGySoft.WinForms.dll) Version: 5.0.1
[FlagsAttribute]
public enum TaskDialogStandardButtons
<FlagsAttribute>
Public Enumeration TaskDialogStandardButtons
[FlagsAttribute]
public enum class TaskDialogStandardButtons
[<FlagsAttribute>]
type TaskDialogStandardButtons
| None | 0x00 |
Represents none of the standard buttons.
|
| OK | 0x01 |
The task dialog contains the push button: OK.
|
| Yes | 0x02 |
The task dialog contains the push button: Yes.
|
| No | 0x04 |
The task dialog contains the push button: No.
|
| Cancel | 0x08 |
The task dialog contains the push button: Cancel.
If this button is specified, the task dialog will respond to typical cancel actions (Alt-F4 and Escape).
|
| Retry | 0x10 |
The task dialog contains the push button: Retry.
|
| Close | 0x20 |
The task dialog contains the push button: Close.
|