在 C# 中,我有绑定到客户表的数据网格视图,我希望当用户双击网格中的选定行然后出现绑定到客户表(包括文本框)的新表单并让用户修改数据并保存到数据库?
实际上我尝试了这段代码但没有工作!我尝试通过以下代码同步gridview的位置和我的编辑表单绑定源,但运行时没有任何反应!
edit_customerform editcustomer = new edit_customerform();
editcustomer.customersBindingSource.Position=this.customersBindingSource.Position;
editcustomer.ShowDialog();