DataGriew 处理此类问题:System.ArgumentException: DataGridViewComboBoxCell 值无效
Posted on 2023-02-16 10:45 董锡振 阅读(598) 评论(2) 编辑 收藏 举报
要解决此问题,只需为DataGridView添加“DataError”。这就是全部步骤:双击datagridview并从事件列表中选择“dataerror”事件。 DataError事件使您可以处理在数据处理操作期间由控件调用的代码中抛出的异常。 而已 :)
要解决此问题,请为DataGridView添加“DataError”事件,然后再添加 写这个:e.Cancel = true; 例如:
private void dataGridView1_DataError(object sender, DataGridViewDataErrorEventArgs e)
{
e.Cancel = true;
}
本文来自博客园,作者:董锡振,转载请注明原文链接:https://www.cnblogs.com/dongxizhen/p/17125919.html