Anyone know of a custom control that looks like this Volume control and works similarly to slider or trackbar?

I tried googling but all I found was this, w/c is similar to the built-in trackbar control in VS2008.

I don't use WPF; just C# 2.0.

link|improve this question

3  
Is it an option to make one youself. It can't be too hard. Just create an user control with a custom paint event and some mouse move statements. – CodingBarfield Jan 28 '11 at 9:45
Yeah, that looks terrible. Stop trying to be a platform you're not. Windows doesn't look like that, and neither does Mac OS X. (And since when did Mac become an acronym? What's this "MAC" noise?) What's wrong with the standard trackbar control? – Cody Gray Jan 28 '11 at 9:57
well, the primary reason is that the users are already used to this control. this is implemented in c++, and we're porting this to c# and would need to keep the UI. – sjlewis Jan 28 '11 at 13:54
feedback

1 Answer

up vote 3 down vote accepted

You might be able to modify the code of this control to do what you want.

link|improve this answer
this looks cool. i'll check it out. thanks! – sjlewis Jan 28 '11 at 13:54
I ended up rolling my own and this helped me. Thanks, Kernow! – sjlewis Feb 3 '11 at 6:44
Here's another one I found just recently codeproject.com/Articles/57127/… – sjlewis Apr 3 at 14:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.