在DataGridViewCell中全选
本文关键字:全选 DataGridViewCell | 更新日期: 2023-09-27 17:57:58
给定DataGridViewCell Cell = DataGridView.CurrentCell;
,如何选择Cell
中的所有文本?
有一个BeginEdit方法可以编辑CurrentCell并选择其文本:
// 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);