I have simple Windows Forms application (not WPF), and I have two controls on it:

  1. TrackBar
  2. NumericUpDown

I want to make some binding between them so if one of them has its value change, the other control will be updated to show the same value.

Is this possible? If so, how can I do it?

Thanks.

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

Sure, it's possible. I don't know of any way to make the connection between the two controls automatic, so you'll have the write the code yourself. But don't worry, it's not difficult.

You'll first need to attach a handler to the event that is raised by each control when its value changes. Logically enough, both controls this event the same thing: ValueChanged. Then, in each event handler method, you can programmatically set the value of the other control to the new value of the first control. For example:

void myNumericUpDown_ValueChanged(object sender, EventArgs e)
{
    // Sync up the trackbar with the value just entered in the spinbox
    myTrackBar.Value = Convert.ToInt32(myNumericUpDown.Value);
}

void myTrackBar_ValueChanged(object sender, EventArgs e)
{
    // Sync up the spinbox with the value just set on the trackbar
    myNumericUpDown.Value = myTrackBar.Value;
}

Obviously for this to work correctly, you either need to make sure that the controls have the same range (maximum and minimum values), or add some error checks to the above code.

link|improve this answer
Won't it result to endless calls? – 26071986 Jan 12 '11 at 14:59
@26071986: No, it won't. Try it and see. ;-) – Cody Gray Jan 12 '11 at 15:18
I'll try :) – 26071986 Jan 12 '11 at 15:49
feedback

I know how to do it with code ...

But i must have the second way :) and to do it automaticly.

link|improve this answer
Then you'll need to use data binding. Create a data class that represents the value both controls should display, and then bind that to the Value property of each control. That sounds like a lot more work, especially if this is the only thing you need data binding for, but it's up to you. (P.S.: You should post feedback like this as a comment, rather than an answer.) – Cody Gray Jan 12 '11 at 14:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.