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 c开发者_Python百科ode instead of checking every Radio Button in each group whether it is checked or not ? please help. Thanks
Try this:
foreach(Control control in panel.Controls)
{
RadioButton radioButton = control as RadioButton;
if (radioButton != null && radioButton.Checked)
return radioButton;
}
精彩评论