我想根据datagridview列值设置我的datagridview复选框选中或取消选中。
如果datagridview column [3] value =" true"选中复选框
如果datagridview列[3]值=" false"复选框未选中
//my code as follows:
foreach (DataGridViewRow r in dataGridView3.Rows)
{
DataGridViewCheckBoxCell chk = (DataGridViewCheckBoxCell)r.Cells[0];
string inceleme = r.Cells[3].Value.ToString();
if (inceleme=="Evet")
{
chk.Value = chk.TrueValue;
}
}
答案 0 :(得分:0)
您是否尝试过for
- 循环而不是foreach
?如果我没有弄错,foreach会创建你工作的只读副本。