当前位置>>知识集锦

当在VS中使用C#控件dataGridView,感觉并没有错误,却提示“System.ArgumentException:DagaGridViewComboBoxCell值无效”的错误警告,一般来讲这个DataError错误可以用以下的解决方法:

在构造函数中增加以下代码:

 InitializeComponent();

 this.dataGridView1.DataError += delegate(object sender, DataGridViewDataErrorEventArgs e) { };

至此,问题圆满解决。





评论