Skip to main content
All docs
V25.1
  • StepProgressBar.ItemProgressChanged Event

    Occurs when an item’s Progress property is changed.

    Namespace: DevExpress.XtraEditors

    Assembly: DevExpress.XtraEditors.v25.1.dll

    NuGet Package: DevExpress.Win.Navigation

    Declaration

    [DXCategory("Property Changed")]
    public event StepProgressBarItemProgressChangedEventHandler ItemProgressChanged

    Event Data

    The ItemProgressChanged event's data class is DevExpress.XtraEditors.StepProgressBarItemProgressChangedEventArgs.

    Remarks

    The Progress property indicates a value from 0 to 100 that is the level of completion an item has reached.

    The ItemProgressChanged event occurs when any item’s Progress property is changed. To respond to a change of a specific item’s Progress property, use the StepProgressBarItem.ProgressChanged event.

    Progress Change

    The item’s Progress property can be changed by one of the following approaches:

    • Switch an item’s State property to Active.

    • Set an item’s index to the SelectedItemIndex property.

    • Pass an item to the SelectItem method.

    • Set an item’s Progress property with an integer value between 0 and 100 to specify an item’s progress.

    • Call the UnselectAll method to deactivate all items.

    • Call the SelectAll method to activate all items.

    • Call the SelectNext method to select the next item.

    • Call the SelectPrevious method to select the previous item.

    See Also