'Does C# WinForms have a slider control?
Can someone guide me if C# WinForms has a slider control? I see WPF has it but it doesn't show up for me in WinForms what could be the problem?
Solution 1:[1]
There's a TrackBar class that looks a little different, but might be what you're looking for.
Solution 2:[2]
Check out MAC_Slider
Solution 3:[3]
Maybe adding "true" to the autoscroll property in a form or panel, this enables a scroll Bar to scroll between the content
Solution 4:[4]
I found this one on Codeproject friendly to use and very customizable. Below an example of slider done using this project (design is not up to date, sample only to show features).
Solution 5:[5]
If your looking for a better looking trackbar in C# winforms use Siticone or Guana. You can change the color of the trackbar and lots more hope this helps :)
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Troyen |
Solution 2 | Chuck Savage |
Solution 3 | Sebastián García |
Solution 4 | Creek Drop |
Solution 5 | James L |