框架:.net 4.0 WinForms 控件:DataGridView
我试图根据一些条件使datagridview的特定单元格可编辑,下面是我的代码
DataGridView1.ClearSelection();
DataGridViewCell cell = DataGridView1.Rows[e.RowIndex].Cells[0];
DataGridView1.CurrentCell = cell;
DataGridView1.BeginEdit(true);
DataGridView1.BeginEdit(true)应该编辑一个单元格,但它不是在编辑单元格。
请帮我解释如何将单元格设置为编辑模式?
注意:我在单元格输入事件中尝试此代码