C# winform DataGridView 如何实现删除 更新 手动绑定数据源(不是在控件里指定数据源) 求大神 在线等

2025-01-06 15:24:44
推荐回答(2个)
回答1:

建议不要绑数据源,手工添加数据,即使用
添加
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(行号)
更新就直接更新指定单元格

等确认审核完成后,在更新数据库

回答2:

用右键事件,根据选中的行进行撒