Tagged Questions
4
votes
3answers
1k 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
376 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
2answers
567 views
How can I bind a winforms Opacity to a TrackBar (slider)
I've got a winform with a BindingSource that has an int property named Opacity in its DataSource. I also have a TrackBar on the winform that I want to use to control the Opacity of the winform.
...
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
2answers
592 views
How to check for TrackBar sliding with mouse hold and release
I have a trackbar in my WinForms program which by moving it a huge and time consuming method will be refreshed. Have a look at this code:
trackBar_ValueChanged(object sender, EventArgs e)
{
...
1
vote
1answer
599 views
Slider/Trackbar alternative
Anyone know of a custom control that looks like this 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.
...
1
vote
2answers
429 views
How can I sync the values of NumericUpDown and TrackBar controls in WinForms?
I have simple Windows Forms application (not WPF), and I have two controls on it:
TrackBar
NumericUpDown
I want to make some binding between them so if one of them has its value change, the other ...
1
vote
1answer
2k views
C# /windows forms: linking trackbar and textfield with a factor
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 values ...
1
vote
1answer
983 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
82 views
Values on trackbar
Quick question;
In C#, Windows Forms, is it not possible, to have a System.Windows.Forms.TrackBar show all its values, next to its ticks?
I have not been able to find any way of doing this, which ...
0
votes
2answers
89 views
c# save trackbar.value
I'm trying to save a TrackBar value to a variable but can't manage to do it since the value changed all the time.
void VolumeBarScroll(object sender, System.EventArgs e)
{
int a = ...
0
votes
1answer
290 views
C#: Media player controls (Trackbar / Sliders / ..)
i'm currently porting a media player delphi application to C# and therefore i need some advanced controls for winforms. In fact they should give me the possiblity to create such a style:
Trackbar:
...
0
votes
0answers
80 views
c# easiest way to draw a line behind a trackbar
i am creating a application in c# and i would like to get the same effect on a trackbar component, like in the system volume application in windows 7 (the green line which represents the current sound ...
0
votes
2answers
257 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
2answers
378 views
Implementing a tooltip on a trackbar in c#
I am trying to implement a trackbar with a tooltip. What I want is that the tooltip to appear at certain values when the trackbar is scrolling and then disappear ( and appear at the x,y coordinate of ...
0
votes
2answers
554 views
Adding a TrackBar control to a ContextMenu
Is it possible to add a TrackBar control to a ContextMenu? So when I right click, my ContextMenu will drop down and a TrackBar will appear as a menu item?
0
votes
3answers
527 views
System.Windows.Forms.Trackbar - how to prevent user from dragging the slider?
Is there some way to (temporarily) prevent user from changing the value of TrackBar by dragging the slider? Only way I found is to set Enabled property to false but it also greys out the trackbar.
...
0
votes
1answer
528 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 ...