111,125
社区成员
发帖
与我相关
我的任务
分享
foreach (int id in list3.Keys)
{ foreach (DataGridViewRow row in this.dgv.Rows)
{
if (id == Convert.ToInt32(row.Cells[1].Value))
{
row.Cells[0].Value =true;
}
else
{
row.Cells[0].Value =false;
}
}
}
messbox.show("111111")