Winform DataGridView中的Button点击事件

datagridView CellContentClick事件

private void dgvReg_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
if (dgvReg.Columns[e.ColumnIndex].Name == "buttonName")
{
MessageBox.Show("成功!");
}
}

转载于:https://www.cnblogs.com/hefy/p/7516366.html

你可能感兴趣的:(Winform DataGridView中的Button点击事件)