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

Provides a visual representation of the progress of a long running operation.
Inheritance: TaskDialogBar
Afficher le fichier Open project: robertbaker/SevenUpdate Class Usage Examples

Private Properties

Свойство Type Description

Méthodes publiques

Méthode 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

Méthodes protégées

Méthode Description
Reset ( ) : void

Resets the control to its minimum value.

Method Details

Reset() protected méthode

Resets the control to its minimum value.
protected Reset ( ) : void
Résultat void

TaskDialogProgressBar() public méthode

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

TaskDialogProgressBar() public méthode

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.
Résultat System

TaskDialogProgressBar() public méthode

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.
Résultat System