如果DataGridView 控件绑定数据源后,不能通过 表格的ROW.ADD方法添加行“,系统会提示出错,下面的语句不能用
1 dgvStudent.Rows.Add();
当控件被数据绑定时,无法以编程方式向 DataGridView 的行集合中添加行。”
只能在 DataSet 中添加空行,DataGridView 会自动显示
DataSet ds = new DataSet();
//创建空行
DataRow row = ds.Tables["student"].NewRow();
//将空行加入到DataSet 中
ds.Tables["student"].Rows.Add(row);