我有一些属于一个组的单选按钮。我没有将它们放在列表中,因为它们都散落在页面周围。如何轻松获取所选的单选按钮?
答案 0 :(得分:9)
也许不是最快的方式,但这样的事情应该有效:
private RadioButton GetSelectedRadioButton(string groupName)
{
return GetSelectedRadioButton(Controls, groupName);
}
private RadioButton GetSelectedRadioButton(ControlCollection controls, string groupName)
{
RadioButton retval = null;
if (controls != null)
{
foreach (Control control in controls)
{
if (control is RadioButton)
{
RadioButton radioButton = (RadioButton) control;
if (radioButton.GroupName == groupName && radioButton.Checked)
{
retval = radioButton;
break;
}
}
if (retval == null)
{
retval = GetSelectedRadioButton(control.Controls, groupName);
}
}
}
return retval;
}
答案 1 :(得分:0)
使用“GroupName”属性将单选按钮分组到一个组中。这将使他们表现为一个群体。您仍然需要单独查询它们以查看已检查状态。