在 C# 中将组件附加到 GroupBox
我想在表单中插入一个组框,并在其中放入 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果你说的是winform;只需将单选按钮控件拖到表单设计器中的
GroupBox
中即可。如果您想以编程方式添加它们,类似这样的事情应该可以工作: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:在代码中,假设您有一个组框变量名称 groupBox1:
如果您的意思是就设计器而言,只需将单选按钮拖到组框而不是表单上即可。
In code, assuming that you have a groupbox variable name groupBox1:
If you mean in terms of the designer, just drag the radiobuttons on to the groupbox rather than the form.
您也可以在一行中完成:
Also you can do it on one line: