
This is all the code:
private void button1_Click(object sender, EventArgs e)
{
foreach (Control control in groupBox1.Controls)
{
MessageBox.Show(control.ToString());
}
}
I only want to get the true value
But there is no Checked.
How can I get the true value?
How can I get each index?