我在DataGridView中添加一个DataGridViewCheckBoxColumn列,
想用程序的方法改变datagridviewcheckboxcell的选中状态(打勾或取消打勾)。搞了好久,希望大家能帮忙。
列表名是readperIodCheckBox
for (int i = 0; i < bs_cust_info.Rows.Count-1; i++)
{
string a = bs_cust_info.Rows[i].Cells["readperIod"].Value.ToString();
if (a.Equals("1"))
{
//在这里改变状态,但是不行
bs_cust_info.Rows[i].Cells["readperIodCheckBox"].Value = true;
}
else
{
bs_cust_info.Rows[i].Cells["readperIodCheckBox"].Value = false;
}
}
这样子也不行,帮帮忙吧!