C# Класс SystemEx.Windows.Forms.TaskDialogCommonDialog

Наследование: System.Windows.Forms.CommonDialog
Показать файл Открыть проект

Открытые методы

Метод Описание
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.

Защищенные методы

Метод Описание
RunDialog ( IntPtr hwndOwner ) : bool

The required implementation of CommonDialog that shows the Task Dialog.

Описание методов

Reset() публичный Метод

Reset the common dialog.
public Reset ( ) : void
Результат void

RunDialog() защищенный Метод

The required implementation of CommonDialog that shows the Task Dialog.
protected RunDialog ( IntPtr hwndOwner ) : bool
hwndOwner System.IntPtr Owner window. This can be null.
Результат bool

TaskDialogCommonDialog() публичный Метод

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.
Результат System