0
如何在更新DataGridView中的行後將焦點設置在更新的行上?更新DataGridView中的行後如何在更新的行上設置焦點?
我想更新所述行之後將焦點設置上更新的行,然後顯示datagrridview
DataGridView.CurrentCell = DataGridView.Rows(rowIndex位置)...
如何在更新DataGridView中的行後將焦點設置在更新的行上?更新DataGridView中的行後如何在更新的行上設置焦點?
我想更新所述行之後將焦點設置上更新的行,然後顯示datagrridview
DataGridView.CurrentCell = DataGridView.Rows(rowIndex位置)...
使用
'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)