Class ProgressBar
Implements control for showing progress
Inherited Members
Namespace: EmptyKeys.UserInterface.Controls
Assembly: EmptyKeys.UserInterface.dll
Syntax
public class ProgressBar : RangeBase
Constructors
ProgressBar()
Initializes a new instance of the ProgressBar class.
Declaration
public ProgressBar()
Fields
OrientationProperty
The orientation property
Declaration
public static readonly DependencyProperty OrientationProperty
Field Value
Type | Description |
---|---|
DependencyProperty |
Properties
Orientation
Gets or sets the orientation.
Declaration
public Orientation Orientation { get; set; }
Property Value
Type | Description |
---|---|
Orientation | The orientation. |
Methods
OnApplyTemplate()
Called when [apply template].
Declaration
public override void OnApplyTemplate()
Overrides
OnMaximumChanged(Single, Single)
Called when [maximum changed].
Declaration
protected override void OnMaximumChanged(float oldMaximum, float newMaximum)
Parameters
Type | Name | Description |
---|---|---|
System.Single | oldMaximum | The old maximum. |
System.Single | newMaximum | The new maximum. |
Overrides
OnMinimumChanged(Single, Single)
Called when [minimum changed].
Declaration
protected override void OnMinimumChanged(float oldMinimum, float newMinimum)
Parameters
Type | Name | Description |
---|---|---|
System.Single | oldMinimum | The old minimum. |
System.Single | newMinimum | The new minimum. |
Overrides
OnValueChanged(Single, Single)
Called when [value changed].
Declaration
protected override void OnValueChanged(float oldValue, float newValue)
Parameters
Type | Name | Description |
---|---|---|
System.Single | oldValue | The old value. |
System.Single | newValue | The new value. |