在DataGridView中實現Checkbox的全選的方法就是在列頭畫一個checkbox, 並給其一個事件.ide
這個以前不少blog都有寫, 這裏就很少廢話了, codeproject上面有示例代碼.this
這裏咱們再多作一層的封裝,將其封裝成一個控件,這樣的話, 咱們就能夠最大程度上的複用, 而不須要總是重複寫一樣的, 無聊的代碼了!spa
思路以下:code
繼承DataGridViewCheckBoxColumn類, 更改它的headerCell的樣式. 添加cellValueChanged時間,使在進行復選框選擇的時候能夠觸發事件,從而進行處理.orm
繼承DataGridViewColumnHeaderCell類, 從新繪製一個帶CheckBox的HeaderCellblog
話很少說直接上代碼了, 若是有不懂的歡迎留言:繼承
public class DataGridViewCheckBoxColumnSelectAll : DataGridViewCheckBoxColumn { private DatagridViewCheckBoxHeaderCell headerCell; private bool loaded; public event CheckBoxClickedHandler OnCheckBoxClicked; int TotalCheckedCheckBoxes = 0; bool IsHeaderCheckBoxClicked = false; public DataGridViewCheckBoxColumnSelectAll() { this.headerCell = new DatagridViewCheckBoxHeaderCell(); base.HeaderCell = this.headerCell; this.headerCell.OnCheckBoxClicked += new CheckBoxClickedHandler(this.headerCell_OnCheckBoxClicked); this.loaded = false; } public DataGridViewCheckBoxColumnSelectAll(bool threeState) : base(threeState) { this.headerCell = new DatagridViewCheckBoxHeaderCell(); base.HeaderCell = this.headerCell; } /// <summary> /// 在DataGridView改變時進行事件的綁定 /// </summary> protected override void OnDataGridViewChanged() { if (this.DataGridView!=null) { this.DataGridView.CellValueChanged -= DataGridView_CellValueChanged; this.DataGridView.CellValueChanged += DataGridView_CellValueChanged; this.DataGridView.CurrentCellDirtyStateChanged -= DataGridView_CurrentCellDirtyStateChanged; this.DataGridView.CurrentCellDirtyStateChanged += DataGridView_CurrentCellDirtyStateChanged; } } /// <summary> /// 在複選的時候進行判斷. /// </summary> /// <param name="sender"></param> /// <param name="e"></param> void DataGridView_CellValueChanged(object sender, DataGridViewCellEventArgs e) { if (e.RowIndex>=0&&e.ColumnIndex>=0) { if (!IsHeaderCheckBoxClicked) RowCheckBoxClick((DataGridViewCheckBoxCell)this.DataGridView[e.ColumnIndex, e.RowIndex]); } } /// <summary> /// 在複選框被選中的時候觸發該事件, 該事件用於觸發ValueChanged事件 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void DataGridView_CurrentCellDirtyStateChanged(object sender, EventArgs e) { if (this.DataGridView.CurrentCell is DataGridViewCheckBoxCell) this.DataGridView.CommitEdit(DataGridViewDataErrorContexts.Commit); } /// <summary> /// 複選框被點擊時所須要作的操做 /// </summary> /// <param name="checkBox"></param> private void RowCheckBoxClick(DataGridViewCheckBoxCell checkBox) { var head = this.headerCell as DatagridViewCheckBoxHeaderCell; if (checkBox != null) { //計算全部被選中的行的數量 if ((bool)checkBox.Value && TotalCheckedCheckBoxes < this.DataGridView.RowCount) TotalCheckedCheckBoxes++; else if (TotalCheckedCheckBoxes > 0) TotalCheckedCheckBoxes--; //當全部複選框都被選中的時候,列的頭上的複選框被選中, 反之則不被選中. if (TotalCheckedCheckBoxes < this.DataGridView.RowCount) head.IsChecked = false; else if (TotalCheckedCheckBoxes == this.DataGridView.RowCount) head.IsChecked = true; //強制repained head.DataGridView.InvalidateCell(head); } } /// <summary> /// 頭被選中時觸發OnCheckBoxClicked事件. /// </summary> /// <param name="state"></param> private void headerCell_OnCheckBoxClicked(bool state) { if (this.OnCheckBoxClicked != null) { this.OnCheckBoxClicked(state); } } }
public delegate void CheckBoxClickedHandler(bool state); internal class DatagridViewCheckBoxHeaderCell : DataGridViewColumnHeaderCell { private CheckBoxState _cbState = CheckBoxState.UncheckedNormal; private Point _cellLocation = new Point(); private bool _checked; private Point checkBoxLocation; private Size checkBoxSize; public bool IsChecked { get { return _checked; } set { _checked = value; if (this._checked) { this._cbState = CheckBoxState.CheckedNormal; } else { this._cbState = CheckBoxState.UncheckedNormal; } } } public event CheckBoxClickedHandler OnCheckBoxClicked; /// <summary> /// 點擊列頭的時候觸發的事件,這裏有個判斷, 若是點擊的位置是複選框則觸發OnCheckBoxClicked事件. /// </summary> /// <param name="e"></param> protected override void OnMouseClick(DataGridViewCellMouseEventArgs e) { Point point = new Point(e.X + this._cellLocation.X, e.Y + this._cellLocation.Y); if (((point.X >= this.checkBoxLocation.X) && (point.X <= (this.checkBoxLocation.X + this.checkBoxSize.Width))) && ((point.Y >= this.checkBoxLocation.Y) && (point.Y <= (this.checkBoxLocation.Y + this.checkBoxSize.Height)))) { this._checked = !this._checked; bool temp = this._checked; if (this.OnCheckBoxClicked != null) { this.OnCheckBoxClicked(this._checked); base.DataGridView.InvalidateCell(this); } foreach (DataGridViewRow row in base.DataGridView.Rows) { ((DataGridViewCheckBoxCell)row.Cells[e.ColumnIndex]).Value = temp; } base.DataGridView.RefreshEdit(); } base.OnMouseClick(e); } /// <summary> /// 繪製一個CheckBox /// </summary> protected override void Paint(Graphics graphics, Rectangle clipBounds, Rectangle cellBounds, int rowIndex, DataGridViewElementStates dataGridViewElementState, object value, object formattedValue, string errorText, DataGridViewCellStyle cellStyle, DataGridViewAdvancedBorderStyle advancedBorderStyle, DataGridViewPaintParts paintParts) { base.Paint(graphics, clipBounds, cellBounds, rowIndex, dataGridViewElementState, value, formattedValue, errorText, cellStyle, advancedBorderStyle, paintParts); Point point = new Point(); Size glyphSize = CheckBoxRenderer.GetGlyphSize(graphics, CheckBoxState.UncheckedNormal); point.X = (cellBounds.Location.X + (cellBounds.Width / 2)) - (glyphSize.Width / 2); point.Y = (cellBounds.Location.Y + (cellBounds.Height / 2)) - (glyphSize.Height / 2); this._cellLocation = cellBounds.Location; this.checkBoxLocation = point; this.checkBoxSize = glyphSize; if (this._checked) { this._cbState = CheckBoxState.CheckedNormal; } else { this._cbState = CheckBoxState.UncheckedNormal; } CheckBoxRenderer.DrawCheckBox(graphics, this.checkBoxLocation, this._cbState); } }
源碼位置:three
http://pan.baidu.com/s/1jGJzErs事件