Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

StepProgressBar.ItemProgressChanged Event

Occurs when an item’s Progress property is changed.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v24.2.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