C# winform DataGridView 如何实现删除 更新 手动绑定数据源(不是在控件里指定数据源) 求大神 在线等 20
2个回答
展开全部
建议不要绑数据源,手工添加数据,即使用
添加
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(行号)
更新就直接更新指定单元格
等确认审核完成后,在更新数据库
添加
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(行号)
更新就直接更新指定单元格
等确认审核完成后,在更新数据库
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询