0

DataGridViewで行を更新した後、更新された行にフォーカスを設定するにはどうすればよいですか?

行を更新した後、更新された行にフォーカスを設定してから、datagrridviewを表示したい

DataGridView.CurrentCell = DataGridView.Rows(RowIndex)..。

4

1 に答える 1

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)
于 2012-09-04T08:52:01.090 に答える