0

在 C# 中,我有绑定到客户表的数据网格视图,我希望当用户双击网格中的选定行然后出现绑定到客户表(包括文本框)的新表单并让用户修改数据并保存到数据库?

实际上我尝试了这段代码但没有工作!我尝试通过以下代码同步gridview的位置和我的编辑表单绑定源,但运行时没有任何反应!

edit_customerform editcustomer = new edit_customerform();
editcustomer.customersBindingSource.Position=this.customersBindingSource.Position; 
editcustomer.ShowDialog();
4

1 回答 1

0

以下是使用 EntityFramework 的方法。

http://social.msdn.microsoft.com/Forums/en-US/adodotnetentityframework/thread/881d238c-1738-41e6-8a90-5bcc1f8d4801

于 2013-04-06T20:26:30.067 回答