// 复选框点击事件
private void dgvwPower_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
if (e.ColumnIndex == 0)//单击复选框时
{
DataGridViewCell dgcell = dgvwPower.Rows[e.RowIndex].Cells[e.ColumnIndex];
bool ischk1 = (bool)dgcell.FormattedValue;//选中前
bool ischk2 = (bool)dgcell.EditedFormattedValue;//选中后
if (ischk1 != ischk2)
{
//dosth
}
}
}
Winform中DataGridView的复选框事件
最新推荐文章于 2024-08-19 09:44:23 发布