How to set radio buttons in a nested group box as a same group with radio buttons outside of that group box(如何将嵌套组框中的单选按钮设置为与该组框外的单选按钮相同的组)
问题描述
我有 winform 应用程序 (.NET 4.0)
I have winform application (.NET 4.0)
有没有办法手动设置一组单选按钮?
Is there any way to manually set a group of radio buttons?
我有四个单选按钮,其中两个在组框内,另外两个在该框外.如何将它们全部设置到同一个组?
I have four radio buttons, two of them inside of a group box and the other two outside of that box. How can I set all of them to the same group?
推荐答案
这可能已经在另一个帖子中回答了,听起来一样:
This might have been answered in another post, it sounds the same:
将 Windows 窗体单选按钮分组到不同的父级C#中的控件
这是公认的解决方案:
恐怕您将不得不手动处理此问题...还不错实际上,您可能只需将所有 RadioButton 存储在一个列表中,并为所有这些使用单个事件处理程序:
I'm afraid you'll have to handle this manually... It's not so bad actually, you can probably just store all the RadioButton in a list, and use a single event handler for all of them:
private List<RadioButton> _radioButtonGroup = new List<RadioButton>();
private void radioButton_CheckedChanged(object sender, EventArgs e)
{
RadioButton rb = (RadioButton)sender;
if (rb.Checked)
{
foreach(RadioButton other in _radioButtonGroup)
{
if (other == rb)
{
continue;
}
other.Checked = false;
}
}
}
这是另一个问同样问题的问题:不同面板中的单选按钮组
Here's another question asking the same thing: Radiobuttons as a group in different panels
这篇关于如何将嵌套组框中的单选按钮设置为与该组框外的单选按钮相同的组的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将嵌套组框中的单选按钮设置为与该组框外的单选按钮相同的组
- 如何用自己压缩一个 IEnumerable 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- C# 中多线程网络服务器的模式 2022-01-01
- 输入按键事件处理程序 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01