我有一个这样的数据绑定(bind):
numericUpDown1.DataBindings.Add("Value", myBox1, "Width");
每当 myBox1.Width 更改时,它都会更新 numericUpDown1.Value。
问题是在控件上输入新数字时,myBox1.Width 不会立即更新,而是只有在光标离开控件的文本区域后才会更新。这个错误有什么解决方法吗?谢谢!
最佳答案
像这样更改代码:
numericUpDown1.DataBindings.Add("Value", myBox1, "Width", false, DataSourceUpdateMode.OnPropertyChanged);
关于c# - 更改 numericUpDown 上的数字时数据绑定(bind)失败,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2095964/