在 C# 中将组件附加到 GroupBox

发布于 2024-08-04 01:38:22 字数 140 浏览 4 评论 0原文

我想在表单中插入一个组框,并在其中放入 3 个单选按钮。

将 3 个单选按钮附加到组合框有什么优点吗?出租车我们甚至这样做吗?

如果我必须这样做,我该如何将 3 个单选按钮附加到组框,以便它们成为组框的一部分,而不是表单上的单独组件?

I want to insert a group box in the form and put in 3 radio buttons in it.

Are there any advantages in attaching the 3 radio buttons to the groupbox.? Cab we even do that?

If I have to do it how do i attach the 3 radio buttons to the groupbox so that they become part of the group box and not separate components on the form?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

如果没有 2024-08-11 01:38:22

如果你说的是winform;只需将单选按钮控件拖到表单设计器中的GroupBox 中即可。如果您想以编程方式添加它们,类似这样的事情应该可以工作:

RadioButton rb = new RadioButton();
rb.Text = "Some text";
myGroupBox.Controls.Add(rb);
rb.Location = new Point(someX, someY);

// repeat as necessary

If you are talking winforms; simply drag the radio button controls into the GroupBox in the forms designer. If you want to add them programmatically, something like this should work:

RadioButton rb = new RadioButton();
rb.Text = "Some text";
myGroupBox.Controls.Add(rb);
rb.Location = new Point(someX, someY);

// repeat as necessary
惯饮孤独 2024-08-11 01:38:22

在代码中,假设您有一个组框变量名称 groupBox1:

groupBox1.Controls.Add(radioButton1);
groupBox1.Controls.Add(radioButton2);
groupBox1.Controls.Add(radioButton3);

如果您的意思是就设计器而言,只需将单选按钮拖到组框而不是表单上即可。

In code, assuming that you have a groupbox variable name groupBox1:

groupBox1.Controls.Add(radioButton1);
groupBox1.Controls.Add(radioButton2);
groupBox1.Controls.Add(radioButton3);

If you mean in terms of the designer, just drag the radiobuttons on to the groupbox rather than the form.

抚你发端 2024-08-11 01:38:22

您也可以在一行中完成:

groupBox1.Controls.AddRange(new Control[] { radioButton1, radioButton2, radioButton3 });

Also you can do it on one line:

groupBox1.Controls.AddRange(new Control[] { radioButton1, radioButton2, radioButton3 });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文