如何在 DataGridViewCheckBoxCell 中获得类似 CheckBox 的控件,在 DataGridViewComboBoxCell 中获得类似的组合框?
foreach (DataGridViewRow row in dgvPerformance.Rows)
{
DataGridViewCheckBoxCell chk = (DataGridViewCheckBoxCell)row.Cells[6];
//I need to find CheckBox in chk
}