TaskDialogStandardButtons Enumeration

Identifies the possible standard buttons that can be displayed via TaskDialog.

Definition

Namespace: KGySoft.WinForms.Components
Assembly: KGySoft.WinForms (in KGySoft.WinForms.dll) Version: 5.0.1
C#
[FlagsAttribute]
public enum TaskDialogStandardButtons

Members

None0x00 Represents none of the standard buttons.
OK0x01 The task dialog contains the push button: OK.
Yes0x02 The task dialog contains the push button: Yes.
No0x04 The task dialog contains the push button: No.
Cancel0x08 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).
Retry0x10 The task dialog contains the push button: Retry.
Close0x20 The task dialog contains the push button: Close.

See Also