Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Data binding fails when changing numbers on numericUpDown

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!

like image 474
Dan7 Avatar asked Oct 18 '25 14:10

Dan7


1 Answers

Change the code like this:

numericUpDown1.DataBindings.Add("Value", myBox1, "Width", false, DataSourceUpdateMode.OnPropertyChanged);
like image 135
Giorgi Avatar answered Oct 20 '25 03:10

Giorgi