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
372 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
564 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.
...
1
vote
1answer
156 views
Control the computer's volume in C#
Is there a way to control the computer's actual volume in C# and display that in a vertical track bar??
I have tried practically everything, but there must be something I am missing.
Thanks.
1
vote
2answers
577 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
517 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 ...
1
vote
1answer
593 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
428 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
394 views
Trigger event on trackbar ValueChanged, but not in code
I want to be able to modify the value property of a trackbar in code without triggering my event handler. I wish to trigger the event only when the control is changed by the user by dragging the ...
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 ...
0
votes
1answer
77 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
118 views
can't get value of trackbar on menu strip
I've added a trackbar to menu strip manually because vs 2008 doesn't allow me to do.
However, i can't get the value of trackbar.
Form1.cs:
...
0
votes
2answers
85 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
3answers
172 views
c# Trackbar increase/decrease
I am really new to C# and do have a few problems with the trackbar.
I am trying to increase/decreasing the volume by adjusting the trackbar up and down.
I do have two commands that I can send with a ...
0
votes
1answer
289 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
79 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
200 views
Dynamically created trackbars and Labels and linking them together in C#
I am trying to create trackbars and labels dynamically. In which if a user inputs a number like 4, it creates 4 trackbars and 4 labels. Then if the user moves any of the dynamically created trackbar ...
0
votes
2answers
249 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
275 views
How do I label the minimum, maximum, center ticks in a .net 3.5 trackbar?
I need to set a voltage in an application. I'm used to using sliders in Labview, and would like to replicate that using a C# program.
I've figured out that the track bar only does integer values, so ...
0
votes
1answer
507 views
Adding a TrackBar in ToolStrip
I am trying to add a TrackBar in my ToolStrip. I have found this code somewhere on the net but I am not sure how to use it as it should be compiled maybe?
Code
/// <summary>
/// Adds ...
0
votes
2answers
376 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
546 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
1answer
335 views
Using trackbar to adjust color filter of an image
I m trying to do wat my title above says however i m there is no change on my pic when i scroll the trackbar. i noe there is sth missing in my code ... can anyone help me out with this ? greatly ...
0
votes
2answers
575 views
Image Zoomer tool in c#
I am trying to make a trackbar which will zoom in and out on a picture in a picturebox. This is my current code:
namespace Zoom_in_and_Out_Tool
{
public partial class Form1 : Form
{
...
0
votes
1answer
414 views
binding textbox with trackbar and with field in class
Hi
I have problem with binding textbox with trackbar and with a property in class.
I bind a textbox.text property to field
`Progress`
in my object. Next I managed to bound property Value from ...
0
votes
3answers
524 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
524 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 ...