Slider control missing?

c#, controls, winforms

Solution

You can try this:

- Right click on the Toolbox and select "Choose Items..." from the context menu.

- In the ".NET Framework Components" tab, check if TrackBar is selected.

And if is not selected, you should select it.

MSDN link:

WinForms TrackBar:

http://msdn.microsoft.com/en-us/library/system.windows.forms.trackbar(v=vs.100).aspx

Problem

I have a weird problem. I used the Slider control in my C# in the past, but now its missing. I can't find System.Windows.Controls in my References list, and when I try to add it, it won't show in the '.NET' tab. Its even more weird becase I don't think any other control is missing. How can I bring my Slider control back?

Original source