C# Class SystemEx.Windows.Forms.TaskDialogCommonDialog

Inheritance: System.Windows.Forms.CommonDialog
Exibir arquivo Open project: pvginkel/SystemEx

Public Methods

Method Description
Reset ( ) : void

Reset the common dialog.

TaskDialogCommonDialog ( TaskDialog taskDialog ) : System

TaskDialog wrapped in a CommonDialog class. THis is required to work well in MMC 2.1. In MMC 2.1 you must use the ShowDialog methods on the MMC classes to correctly show a modal dialog. This class will allow you to do this and keep access to the results of the TaskDialog.

Protected Methods

Method Description
RunDialog ( IntPtr hwndOwner ) : bool

The required implementation of CommonDialog that shows the Task Dialog.

Method Details

Reset() public method

Reset the common dialog.
public Reset ( ) : void
return void

RunDialog() protected method

The required implementation of CommonDialog that shows the Task Dialog.
protected RunDialog ( IntPtr hwndOwner ) : bool
hwndOwner System.IntPtr Owner window. This can be null.
return bool

TaskDialogCommonDialog() public method

TaskDialog wrapped in a CommonDialog class. THis is required to work well in MMC 2.1. In MMC 2.1 you must use the ShowDialog methods on the MMC classes to correctly show a modal dialog. This class will allow you to do this and keep access to the results of the TaskDialog.
public TaskDialogCommonDialog ( TaskDialog taskDialog ) : System
taskDialog TaskDialog The TaskDialog to show.
return System