全選DataGridView中的DataGridViewCheckBoxColumn選項

費勁_奮進發表於2014-04-24

 程式碼實現:

chk全選_CheckedChanged事實

點選全選 點選取消全選

for (int i = 0; i < this.dgv.Rows.Count; i++)
            {
                 DataGridViewCheckBoxCell checkBox = (DataGridViewCheckBoxCell)this.dgv常用選項.Rows[i].Cells[0];
             
                if (this.chk全選.Checked==false)
                {
                    checkBox.Value = 0; //設定為0的時候取消全選
                }
                else if (this.chk全選.Checked==true)
                {
                    checkBox.Value = 1; //設定為1的時候全選
                }
            }

相關文章