C# Class DroidExplorer.Controls.VistaTaskDialogCommonDialog

TaskDialog wrapped in a CommonDialog class. This is required to work well in MMC 3.0. In MMC 3.0 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.
Inheritance: System.Windows.Forms.CommonDialog
Show file Open project: camalot/droidexplorer

Public Methods

Method Description
Reset ( ) : void

Reset the common dialog.

VistaTaskDialogCommonDialog ( VistaTaskDialog 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

VistaTaskDialogCommonDialog() 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 VistaTaskDialogCommonDialog ( VistaTaskDialog taskDialog ) : System
taskDialog VistaTaskDialog The TaskDialog to show.
return System