C# 怎样判断 datagridview 中的checkbox列是否被选中
2021-04-19 11:29
阅读:577
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
for (int i = 0; i
{
if ((bool)dataGridView1.Rows[i].Cells[0].EditedFormattedValue==true) //之前用value,值一直不变,改为EditedFormattedValue可以了
{
//TODO
}
}
}
上面事件和里面方法可能不匹配,是找的结合到一起的,但不影响看
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:C# 怎样判断 datagridview 中的checkbox列是否被选中
文章链接:http://soscw.com/index.php/essay/76641.html
文章标题:C# 怎样判断 datagridview 中的checkbox列是否被选中
文章链接:http://soscw.com/index.php/essay/76641.html
评论
亲,登录后才可以留言!