Skip to main content
All docs
V25.1
  • RepositoryItemTrackBar.Scroll Event

    Fires when a user changes the trackbar’s value using the mouse or keyboard.

    Namespace: DevExpress.XtraEditors.Repository

    Assembly: DevExpress.XtraEditors.v25.1.dll

    NuGet Package: DevExpress.Win.Navigation

    Declaration

    [DXCategory("Events")]
    public event EventHandler Scroll

    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