建议不要绑数据源,手工添加数据,即使用
添加
int IntRowIndex = DataGridView1.Rows.Add();
DataGridView1.Rows[IntRowIndex].Cells["DvMID"].Value = Dt.Rows[i]["MID"];
DataGridView1.Rows[IntRowIndex].Cells["DvCode"].Value = Dt.Rows[i]["Code"];
DataGridView1.Rows[IntRowIndex].Cells["DvName"].Value = Dt.Rows[i]["Name"];
删除
DataGridView1.Rows.RemoveAt(行号)
更新就直接更新指定单元格
等确认审核完成后,在更新数据库
用右键事件,根据选中的行进行撒