c# datagridview里面的checkbox全选和取消全选 按钮

首先

using System;

然后,设置全选button,选中所有的checkbox

        private void selectAll_Click(object sender, EventArgs e)
        {
        //遍历datagridview中的每一行,判断是否选中,若为选中,则选中
            for (int i = 0; i < dataGridView1.Rows.Count; i++)
            {
                if ((Convert.ToBoolean(dataGridView1.Rows[i].Cells[0].Value) == false))
                {
                    dataGridView1.Rows[i].Cells[0].Value = "True";
                }
                else
                    continue;
            }
        }

接着,设置取消全选button,取消选中的所有checkbox

        private void cancelAll_Click(object sender, EventArgs e)
        {
            for (int i = 0; i < dataGridView1.Rows.Count; i++)
            {
                if ((Convert.ToBoolean(dataGridView1.Rows[i].Cells[0].Value) == true))
                {
                    dataGridView1.Rows[i].Cells[0].Value = "False";
                }
                else
                    continue;
            }
        }

猜你喜欢

转载自blog.csdn.net/gdali/article/details/81902018