如何在更新DataGridView中的行后将焦点设置在更新的行上?
我希望在更新行后关注更新的行,然后显示datagrridview
DataGridView.CurrentCell = DataGridView.Rows(RowIndex)...
答案 0 :(得分:0)
使用
'update en refresh your datagrid like so.
myDataGrid.Update()
myDataGrid.Refresh()
'fill in the correct rowindex and column index and this will select/focus the
'correct row.
myDataGrid.Select(rowIndex, ColumnIndex)