3

我有这样的数据绑定:

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

每当 myBox1.Width 发生变化时,它都会更新 numericUpDown1.Value。

问题是在控件上输入新数字时,myBox1.Width 不会立即更新,而是在光标离开控件的文本区域后才更新。这个错误有什么解决方法吗?谢谢!

4

1 回答 1

9

像这样更改代码:

numericUpDown1.DataBindings.Add("Value", myBox1, "Width", false, DataSourceUpdateMode.OnPropertyChanged);
于 2010-01-19T18:33:13.377 回答