怎么解决DataGridView的InvalidOperationException?
我在DataGridView的_CurrentCellChanged或_CellEnter事件中+入了以下代码:
DataGridViewCell currentCell = this.dgvQuickFilter.CurrentCell;
DataGridViewComboBoxCell dcCell = new DataGridViewComboBoxCell();
..........
..........
this.dgvQuickFilter[e.ColumnIndex, e.RowIndex] = dcCell;//异常的是这一句
常常会报InvalidOperationException,不是每次都会报,信息为:{"操作无效,原因是它导致对 SetCurrentCellAddressCore 函数的可重入调用。"}
我的目的是:将非DataGridViewComboBoxCell 的单元格转为DataGridViewComboBoxCell 单元格;
请问解决或者绕过这个问题啊
------解决方案--------------------
up
------解决方案--------------------
我给一个"绕过"此问题的方案:
try
{
this.dgvQuickFilter[e.ColumnIndex, e.RowIndex] = dcCell;//异常的是这一句
}
catch{}
------解决方案--------------------
关注+学习!!
帮你顶!!