I have a databinding like this:

    numericUpDown1.DataBindings.Add("Value", myBox1, "Width");

Whenever myBox1.Width changes it will update numericUpDown1.Value.

The problem is when entering new numbers on the control, myBox1.Width will not be updated immediately, but only after the cursor leaves the text area of the control. Is there any workaround to this bug? Thanks!

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Change the code like this:

numericUpDown1.DataBindings.Add("Value", myBox1, "Width", DataSourceUpdateMode.OnPropertyChanged);
link|improve this answer
1  
There's no matching signature but numericUpDown1.DataBindings.Add("Value", myBox1, "Width", false, DataSourceUpdateMode.OnPropertyChanged) works like a charm. Thanks! – Dan7 Jan 19 '10 at 19:12
You are welcome – Giorgi Jan 19 '10 at 19:30
feedback

Your Answer

 
or
required, but never shown

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