C# Class SevenSoftware.Windows.Dialogs.TaskDialog.TaskDialogProgressBar

Provides a visual representation of the progress of a long running operation.
Inheritance: TaskDialogBar
ファイルを表示 Open project: robertbaker/SevenUpdate Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
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

Protected Methods

Method Description
Reset ( ) : void

Resets the control to its minimum value.

Method Details

Reset() protected method

Resets the control to its minimum value.
protected Reset ( ) : void
return void

TaskDialogProgressBar() public method

Initializes a new instance of the TaskDialogProgressBar class. Creates a new instance of this class.
public TaskDialogProgressBar ( ) : System
return System

TaskDialogProgressBar() public method

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.
return System

TaskDialogProgressBar() public method

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.
return System