在DataGridViewCell中选择全部

时间:2013-02-07 02:29:32

标签: c# .net c#-4.0 datagridview

鉴于DataGridViewCell Cell = DataGridView.CurrentCell;,如何选择Cell中的所有文字?

1 个答案:

答案 0 :(得分:3)

有一种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);