Core Library for WPF | ComponentOne
Core Library / ProgressBar / Indeterminate Mode
In This Topic
    Indeterminate Mode
    In This Topic

    The ProgressBar control provides two different states to visualize the progress of a task. The default state in the ProgressBar control is the 'determinate' state, where you can provide an exact estimation of the progress of the control.

    The image below depicts the default determinate state:

    Default determinate state in progressbar.

    The user can also enable a state in the ProgressBar control to denote that the progress of a task cannot be determined or estimated, known as the Indeterminate state. This feature can be set using the IsIndeterminate property.

    Indeterminate state in progressbar

    The code snippet below shows how to set the IsIndeterminate property.

    XAML
    Copy Code
    <c1:C1ProgressBar IsIndeterminate="True"  />