0

DataGridViewCheckBoxCell の CheckBox のようなコントロールを DataGridViewComboBoxCell のコンボボックスと同様に取得するにはどうすればよいですか?

foreach (DataGridViewRow row in dgvPerformance.Rows)
{
   DataGridViewCheckBoxCell chk = (DataGridViewCheckBoxCell)row.Cells[6];
   //I need to find CheckBox in chk
}
4

1 に答える 1

0

CheckBoxからコントロールを取得することはできませんが、DataGridViewCheckBoxCellその値を取得できます。

foreach (DataGridViewRow row in dgvPerformance.Rows){
   DataGridViewCheckBoxCell chk = row.Cells[6] as DataGridViewCheckBoxCell;

   if(chk != null && (bool)chk.Value){
      //checked, do something
   }
}
于 2013-05-14T12:59:55.980 に答える