111,129
社区成员
发帖
与我相关
我的任务
分享 //全选
private void btnSelectAll_Click(object sender, EventArgs e)
{
foreach (DataGridViewRow dr in dataGridView1.Rows)
{
((DataGridViewCheckBoxCell)dr.Cells[0]).Value = true;
}
}
//全不选
private void btnNoSelect_Click(object sender, EventArgs e)
{
foreach (DataGridViewRow dr in dataGridView1.Rows)
{
((DataGridViewCheckBoxCell)dr.Cells[0]).Value = false;
}
}