我正在使用textbox
组件将BindingSouce
控件绑定到数据源。
数据绑定(在设计者中)如下:
this.amountTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.bindingSource, "Amount", true, System.Windows.Forms.DataSourceUpdateMode.OnValidation, null, "C2"));
要测试,我会执行以下操作:
我还尝试了DataSourceUpdateMode.OnPropertyChanged
并将0设置为默认的空值。麻烦有同样的影响。
我错过了什么?