RepositoryItemTrackBar.Scroll Event
Fires when a user changes the trackbar’s value using the mouse or keyboard.
Namespace: DevExpress.XtraEditors.Repository
Assembly: DevExpress.XtraEditors.v24.1.dll
NuGet Package: DevExpress.Win.Navigation
Declaration
Event Data
The Scroll event's data class is EventArgs.
Remarks
Use the TrackBarControl.Value property to get the control’s new value when this event fires.
void repositoryItemTrackBar1_Scroll(object sender, EventArgs e) {
int value = (sender as TrackBarControl).Value;
//...
}
See Also