windowsforms-devexpress-dot-xtraeditors-dot-trackbarcontrol-27b98765.md
Moves the thumb to the left by the SmallChange value.
Namespace : DevExpress.XtraEditors
Assembly : DevExpress.XtraEditors.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
public virtual void MoveLeft()
Public Overridable Sub MoveLeft
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();
}
Public Sub New()
InitializeComponent()
trackBarControl1.Properties.SmallChange = 1
End Sub
Private Sub btnLeft_Click(ByVal sender As Object, ByVal e As EventArgs)
trackBarControl1.MoveLeft()
End Sub
See Also