0

与えられた場合DataGridViewCell Cell = DataGridView.CurrentCell;、どのようにすべてのテキストを選択できますCellか?

4

1 に答える 1

3

CurrentCell を編集してそのテキストを選択するBeginEditメソッドがあります。

// Update CurrentCell to the provided Cell
// Can be skipped if Cell is actually the CurrentCell
Cell.DataGridView.CurrentCell = Cell;

// Change the grid's CurrentCell to edit mode and select text
Cell.DataGridView.BeginEdit(true);
于 2013-02-07T03:26:09.847 に答える