Does C# WinForms have a slider control?

C#WinformsSlider

C# Problem Overview


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?

C# Solutions


Solution 1 - C#

There's a http://msdn.microsoft.com/en-us/library/system.windows.forms.trackbar.aspx">TrackBar</a> class that looks a little different, but might be what you're looking for.

Solution 2 - C#

Check out MAC_Slider

Solution 3 - C#

Maybe adding "true" to the autoscroll property in a form or panel, this enables a scroll Bar to scroll between the content

Solution 4 - C#

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).

enter image description here

Solution 5 - C#

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 :)

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionuser677607View Question on Stackoverflow
Solution 1 - C#TroyenView Answer on Stackoverflow
Solution 2 - C#Chuck SavageView Answer on Stackoverflow
Solution 3 - C#Sebastián GarcíaView Answer on Stackoverflow
Solution 4 - C#Creek DropView Answer on Stackoverflow
Solution 5 - C#James LView Answer on Stackoverflow