与えられた場合DataGridViewCell Cell = DataGridView.CurrentCell;
、どのようにすべてのテキストを選択できますCell
か?
質問する
1227 次
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 に答える