Tagged Questions

2
votes
1answer
374 views

How can I move the TrackBar in response to mouse events in C#?

This is probably a n00b query. I have a need where I want to change the trackbar value based on a mouse down event. This I achieved as follows: private void MoveTrackBarToMouseClickLocation(TrackBar ...
2
votes
1answer
5k views

WinForms Volume Slider/Trackbar User Control

I'm looking for a trackbar-like user/custom control to use in my .NET 2.0 WinForms app. Note: I'm NOT asking how to control the volume in a WinForms app. Anyone knows of a nice looking custom ...
1
vote
1answer
518 views

TrackBar Control acting as a Range Selector with Multiple Thumbs

I am after a control which works similarly to a TrackBar control but has three thumbs, one for selecting a value and two others for selecting the minimum and maximum values on the same control. I ...
0
votes
2answers
252 views

Customizing the TrackBar control in .NET

I am trying to develop application that would let me mark A-B points on the timeline. How do I draw lines on the trackbar to mark a specific point/value? Also, how do I hide the ticks in the ...
0
votes
0answers
83 views

Determine exact tick locations on TrackBar

I need to know the exact location of the TrackBar slider when the user moves it relative to the form. I need to move another control and line it up with the current tick mark. What is the most ...
0
votes
1answer
527 views

Question about WinForms TrackBar control in .Net

Does anyone know the millisecond interval, used by the framework trackbar, between calling the ValueChanged event when moving the grip with a mouse? I've implemented my own trackbar and I'd like the ...