简单的DataGridView绑定问题
C#
界面载入时 dataGridView绑定dataTable, 载入数据。现在需求手动修改界面view中的数据,点击保存按钮将数据保存到table中。
请问怎样简便的让view中修改后的数据保存到table中?
------解决方案--------------------给你个链接 ,自己去看看http://www.soaspx.com/dotnet/asp.net/Control/control_20110408_7487.html
------解决方案--------------------最简单的方式:
1.拉个datagridview到你的窗体,此时可以选择数据源(这个自己会吧),同时有启用添加、启用编辑、启用删除,把这三个钩打上
2.然后就可以使用TableAdapterManager的UpdateAll就可以了
------解决方案-------------------- private void dataGridView1_CellEndEdit(object sender, DataGridViewCellEventArgs e)
{
Person per = dataGridView1.Rows[e.RowIndex].DataBoundItem as Person;
}