0

我还没有在论坛中找到我真正需要的东西。我不想移动选择或滚动索引,我需要做的就是将具有特定索引的整行更改为我的 datagridview 中的最后一行。当我编辑这一行时,我需要自动发生这种情况。

PS Datagrid 未绑定

例如:

dgv.rows(index).index=dgv.row.getlastrow

但是,调试器返回一个索引是只读的错误。

请帮助伙计们!

4

1 回答 1

0

这对我有用:

Dim curr_row As DataGridViewRow = idgv.Rows(Index)               
Dim curr_index As Integer=idgv.Rows.GetLastRow(DataGridViewElementStates.Visible)     
idgv.Rows.Remove(curr_row)
idgv.Rows.Insert(curr_index, curr_row)
于 2017-11-01T10:01:58.107 回答