ProgressBar
Represents a progress bar control.
A ProgressBar
control visually indicates operation progress.
The Style
property determines the display style. The ProgressBar
can only be oriented horizontally and is typically used when performing tasks such as copying files or printing documents. Using a ProgressBar
alerts users that the application is performing a task and remains responsive.
Features
Maximum and Minimum
The ProgressBar
can specify custom integer values for the Maximum
and Minimum
properties.

How To
Customize the Appearance
The ProgressBar
control can be customized through the Font
, Color
, and AppearanceKey
properties.
Appearance Key
The ProgressBar
control can be customized to show any predefined theme appearance by setting the AppearanceKey
property.

Font
Like most other controls, the ProgressBar
control has a Font
property that allows for customization of the size, features, and style of font.

Color
The ProgressBar
has three color properties:
ForeColor
: Changes the text colorBackColor
: Controls the container colorBarColor
: Controls the color of the progress bar

Advanced
JavaScript Widget
Class name
"wisej.web.ProgressBar"
Theme appearance
"progressbar", see Themes.
Child components
"progress" is the container that displays the value. "label" is the progress bar's text. See JavaScript.
Source code
Last updated
Was this helpful?