在C/S架構中,給DataGridView的表頭添加CheckBox控件:
添加類:
-
/// <summary>
-
/// 給DataGridView添加全選
-
/// </summary>
-
public class AddCheckBoxToDataGridView
-
{
-
public static System.Windows.Forms.DataGridView dgv;
-
public static void AddFullSelect()
-
{
-
if (dgv.Rows.Count < 1)
-
{
-
return;
-
}
-
System.Windows.Forms.CheckBox ckBox = new System.Windows.Forms.CheckBox();
-
ckBox.Text = "全選";
-
ckBox.Checked = true;
-
System.Drawing.Rectangle rect =
-
dgv.GetCellDisplayRectangle( 0, -1, true);
-
ckBox.Size = new System.Drawing.Size(dgv.Columns[0].Width, 18);
-
ckBox.Location = rect.Location;
-
ckBox.CheckedChanged += new EventHandler(ckBox_CheckedChanged);
-
dgv.Controls.Add(ckBox);
-
}
-
static void ckBox_CheckedChanged(object sender, EventArgs e)
-
{
-
for (int i = 0; i < dgv.Rows.Count; i++)
-
{
-
dgv.Rows[i].Cells[ 0].Value = ((System.Windows.Forms.CheckBox)sender).Checked;
-
}
-
dgv.EndEdit();
-
}
-
--------------------- 本文來自 Tom-Gui 的CSDN 博客 ,全文地址請點擊:https://blog.csdn.net/gui597651737/article/details/7897494?utm_source=copy