绑定代码是这样的
gridControl.DataSource = bindingSource1;
textBox1.DataBindings.Add("Text", bindingSource1, "Name");
现在修改bindingSource1的值gridview列上不会显示,textBox1控件也不会显示,
如果修改textBox1控件的值,gridview也么有同步显示,双向绑定需要哪些步骤?
绑定代码是这样的
gridControl.DataSource = bindingSource1;
textBox1.DataBindings.Add("Text", bindingSource1, "Name");
现在修改bindingSource1的值gridview列上不会显示,textBox1控件也不会显示,
如果修改textBox1控件的值,gridview也么有同步显示,双向绑定需要哪些步骤?
textBox1.DataBindings.Add("Text", bindingSource1, "Name", true, DataSourceUpdateMode.OnPropertyChanged);