2

Anyone know of a custom control that looks like this Volume control http://img806.imageshack.us/img806/9366/volumecontrol.png 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.

Cody Gray - on strike
  • 239,200
  • 50
  • 490
  • 574
sjlewis
  • 780
  • 2
  • 13
  • 25
  • 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 09:45
  • 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

1 Answers1

4

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

Kernow Steve
  • 196
  • 4
  • I ended up rolling my own and this helped me. Thanks, Kernow! – sjlewis Feb 03 '11 at 06:44
  • 2
    Here's another one I found just recently http://www.codeproject.com/Articles/57127/MediaSlider-An-Alternative-to-the-Trackbar-Control – sjlewis Apr 03 '12 at 14:38