C# - 如果在 GroupBox 中选择了单选按钮,则取消选择其他 GroupBox 中的其他单选按钮

C# - If A Radiobutton Selected In GroupBox, Unselect Other Radiobuttons In Other GroupBoxes

我的项目中有 11 个 GroupBoxes 和 40 个 RadioButton。当我 select 一个 GroupBox 中的 RadioButton 时,我想使其他 GroupBox 中的其他 RadioButton unselect。

您可以递归搜索所有单选按钮的表单,然后将它们连接起来并使用评论中链接问题中建议的代码。

它可能看起来像:

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);
        }          
    }

}