TrackBarControl.MoveLeft() Method
Moves the thumb to the left by the SmallChange value.
Namespace: DevExpress.XtraEditors
Assembly: DevExpress.XtraEditors.v24.1.dll
NuGet Package: DevExpress.Win.Navigation
Declaration
Remarks
Users can use the Left
or Down
arrow key to move the focused slider to the left by the SmallChange value. In the Vertical
orientation mode, MoveLeft
method and Left
/ Down
arrow key key move the thumb to the bottom.
public Form1() {
InitializeComponent();
trackBarControl1.Properties.SmallChange = 1;
}
void btnLeft_Click(object sender, EventArgs e) {
trackBarControl1.MoveLeft();
}
See Also