I do it, too. and I get problem when I try to get the changed
DataTable
.It happened if you try to save data just after editing it.
There is the situation:
I have a 3x3 DataTable
dt
, and I link it to a DataGridView dgv
dgv.DataSource = dt;
then I edited the content with row 3 column 3.
I can move cursor to column 1 or column 2, but before i move cursor to the other row, the changing of row 3 will not be set to DataTable.
It's not good. I want it be saved after click SAVE or Ctrl-S.
So, there is a solution:
DataGridView.EndEdit()
.but, the row's data didn't change with only
DataGridView.EndEdit()
.The CurrentRow must lose focus to save the data.
Hmm... Here is a member called
CurrentCell
and Someone set CurrentCell to null, then the data is stored.
I tried it, and it works good!
so, if you want to save the current row's data.
run the below 2 statement:
dgv.EndEdit(); dgv.CurrentCell = null;
then the current row's change will be saved in to DataTable, too.
0 件のコメント:
コメントを投稿