TaskDialogShow(IntPtr) Method

Shows the TaskDialog using the current configuration.

Definition

Namespace: KGySoft.WinForms.Components
Assembly: KGySoft.WinForms (in KGySoft.WinForms.dll) Version: 5.0.1
C#
public TaskDialogResult Show(
	IntPtr owner
)

Parameters

owner  IntPtr
Handle of the parent window. If IntPtr.Zero, the dialog is shown as a non-modal window.

Return Value

TaskDialogResult
A TaskDialogResult value that indicates one of the pressed standard buttons specified by StandardButtons property. If return value is None, then the dialog might have been closed by a custom button, which can be identified by SelectedButtonIndex. The result is stored also in the DialogResult property.

See Also