Tagged Questions

1
vote
1answer
309 views

How do you make a Winform track bar (slider) behave sensibly on a touch-screen monitor

What's the easiest way to modify a Winforms track bar so that when a user clicks on it the track bar jumps to the location of the mouse? By default the track bar moves to half way between it's …
0
votes
1answer
199 views

Trackbar Background in a TabControl

I have a TrackBar control on a TabPage inside a TabControl. The background of the TrackBar is being drawn in grey while the TabPage is being drawn as white. There is no way to set the BackColor …
2
votes
1answer
979 views

WinForms Volume Slider/Trackbar User Control

Hi All, 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 …
1
vote
1answer
452 views

C# /windows forms: linking trackbar and textfield with a factor

hello, linking a trackbar and a textfield is very easy in windows forms. it is like this: textBox.DataBindings.Add("Text", trackBar, "Value"); the problem is, that trackbars only allow for integer …