我的项目中有11个GroupBox和40个RadioButton。我想在GroupBox中选择一个RadioButton时,取消选择其他GroupBox中的其他RadioButtons。
答案 0 :(得分:0)
您可以递归搜索所有RadioButtons的表单,然后将它们连接起来并使用注释中链接问题中建议的代码。
它可能类似于:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
FindRadioButtons(this);
}
private List<RadioButton> RadioButtons = new List<RadioButton>();
private void FindRadioButtons(Control curControl)
{
foreach(Control subControl in curControl.Controls)
{
if (subControl is RadioButton)
{
RadioButton rb = (RadioButton)subControl;
rb.CheckedChanged += Rb_CheckedChanged;
RadioButtons.Add(rb);
}
else if(subControl.HasChildren)
{
FindRadioButtons(subControl);
}
}
}
private void Rb_CheckedChanged(object sender, EventArgs e)
{
RadioButton source = (RadioButton)sender;
if (source.Checked)
{
RadioButtons.Where(rb => rb != source).ToList().ForEach(rb => rb.Checked = false);
}
}
}