我正在向绑定到 DataGridView 的 BindingSource 添加一个新行
source.AddNew();
在此之后,使用 BindingSource 获取新添加的行是在排序时返回 DataGridView 中的下一行。
ROW "A"
ROW "B" <- myBindingSource.AddNew();
ROW "C"
myBindingSource.Current 给出 ROW “C”。(它成为 DataGridView 中的选定行)
我需要这个,因为我只想更新新添加的行
DataRowView drv = (DataRowView)myBindingSource.Current;
myTableAdapter.Update(drv.Row);
而不是整张桌子。
myTableAdapter.Update(myDataSet.myTable);
而且,我想在插入后在 DataGridView 中选择这条新添加的行。
有可能以某种方式吗?