在DataGridView 的
CellClick
事件中添加
if (e.ColumnIndex != 0)
return;
switch (dataGV1.Columns[e.ColumnIndex].Name.ToString())
{
case "selectAll":
if (e.RowIndex < 0)
return;
if ((string)dataGV1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value == "Y")
{
dataGV1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value = "N";
}
else
{
dataGV1.Rows[e.RowIndex].Cells[e.ColumnIndex].Value = "Y";
}
return;
}
"selectAll": 是你CheckedBox那行的名称
前几天刚好有用到