C# Класс SevenSoftware.Windows.Dialogs.TaskDialog.TaskDialogProgressBar

Provides a visual representation of the progress of a long running operation.
Наследование: TaskDialogBar
Показать файл Открыть проект Примеры использования класса

Private Properties

Свойство Тип Описание

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

Метод Описание
TaskDialogProgressBar ( ) : System

Initializes a new instance of the TaskDialogProgressBar class. Creates a new instance of this class.

TaskDialogProgressBar ( int minimum, int maximum, int value ) : System

Initializes a new instance of the TaskDialogProgressBar class. Creates a new instance of this class with the specified minimum, maximum and current values.

TaskDialogProgressBar ( string name ) : System

Initializes a new instance of the TaskDialogProgressBar class. Creates a new instance of this class with the specified name. And using the default values: Min = 0, Max = 100, Current = 0

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

Метод Описание
Reset ( ) : void

Resets the control to its minimum value.

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

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

Resets the control to its minimum value.
protected Reset ( ) : void
Результат void

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

Initializes a new instance of the TaskDialogProgressBar class. Creates a new instance of this class.
public TaskDialogProgressBar ( ) : System
Результат System

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

Initializes a new instance of the TaskDialogProgressBar class. Creates a new instance of this class with the specified minimum, maximum and current values.
public TaskDialogProgressBar ( int minimum, int maximum, int value ) : System
minimum int The minimum value for this control.
maximum int The maximum value for this control.
value int The current value for this control.
Результат System

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

Initializes a new instance of the TaskDialogProgressBar class. Creates a new instance of this class with the specified name. And using the default values: Min = 0, Max = 100, Current = 0
public TaskDialogProgressBar ( string name ) : System
name string The name of the control.
Результат System