Winform 本身作一個checkBox 控件

    #region 在'選取'前面創建全選 CheckBox
            //創建個矩形,等下計算 CheckBox 嵌入 GridView 的位置
            Rectangle rect = dataGridView1.GetCellDisplayRectangle(0, -1, true);
            rect.X = rect.Location.X + rect.Width / 4 + 7;
            rect.Y = rect.Location.Y + (rect.Height / 2 - 9) + 10;
            CheckBox cbHeader = new CheckBox();
            cbHeader.Name = "checkboxHeader";
            cbHeader.Size = new Size(16, 16);
            cbHeader.Location = rect.Location;
            //全選要設定的事件
            cbHeader.CheckedChanged += new EventHandler(cbHeader_CheckedChanged);
            //將 CheckBox 加入到 dataGridView
            dataGridView1.Controls.Add(cbHeader);
            #endregion事件

   private void cbHeader_CheckedChanged(object sender, EventArgs e)//控件的選擇觸發的方法
        {
           if(dataGridView1.Rows.Count>0)
           {
               dataGridView1.EndEdit();///結束編輯才能操做
               foreach (DataGridViewRow dr in dataGridView1.Rows)
               {
                   dr.Cells[0].Value = ((CheckBox)dataGridView1.Controls.Find("checkboxHeader", true)[0]).Checked;
               }  
           }
        }it

相關文章
相關標籤/搜索