--- title: "TrackBar Control Overview" ms.date: "03/30/2017" f1_keywords: - "TrackBar" helpviewer_keywords: - "sliders [Windows Forms], about sliders" - "TrackBar control [Windows Forms], about TrackBar control" - "slider controls [Windows Forms], about slider controls" ms.assetid: 95910ecb-8a4c-4776-89fa-206c89ed6973 --- # TrackBar Control Overview (Windows Forms) The Windows Forms control (also sometimes called a "slider" control) is used for navigating through a large amount of information or for visually adjusting a numeric setting. The control has two parts: the thumb, also known as a slider, and the tick marks. The thumb is the part that can be adjusted. Its position corresponds to the property. The tick marks are visual indicators that are spaced at regular intervals. The trackbar moves in increments that you specify and can be aligned horizontally or vertically. For example, you might use the track bar to control the cursor blink rate or mouse speed for a system. ## Key Properties The key properties of the control are , , , and . is the spacing of the ticks. and are the smallest and largest values that can be represented on the track bar. Two other important properties are and . The value of the property is the number of positions the thumb moves in response to having the LEFT or RIGHT ARROW key pressed. The value of the property is the number of positions the thumb moves in response to having the PAGE UP or PAGE DOWN key pressed, or in response to mouse clicks on the track bar on either side of the thumb. ## See also - - [TrackBar Control](trackbar-control-windows-forms.md)