0

I've a C# Windows Form Application that contains multiple Panels , each panel contains group of Radio Buttons.Is There a simple way to get just the checked RadioButton by code instead of checking every Radio Button in each group whether it is checked or not ? please help. Thanks

CSharpBeginner
  • 105
  • 1
  • 4

1 Answers1

0

Try this:

foreach(Control control in panel.Controls)
{
    RadioButton radioButton = control as RadioButton;
    if (radioButton != null && radioButton.Checked)
        return radioButton;
}
openshac
  • 4,966
  • 5
  • 46
  • 77