如何填充用户控件?
如何扩展用户控件?
我有一个用户控件,它以蓝色突出显示。是一个TabControl。
我如何拉伸它以填充整个父级。
以及如何在 GroupBox 更改时拉伸 ComboBox
更新 请提供具有以下结构的代码: - 窗口->面板->我的用户控制 - 我的用户控件->面板-> tabControl
全部拉伸
How can I stretch a user control?
I have a userControl it's highlighted in blue. Is's a TabControl.
How do I strech it to fill the entire parent.
And how to make ComboBox stretched if GroupBox changes
Update
Please provide the code with this structure:
- Window -> panel -> MyuserContorl
- MyUserControl -> panel -> tabControl
To all stretched
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过设置
Anchor
来锚定您的用户控件。这是一篇有用的文章
编辑:
在您的
用户控件
中,您可能还需要
停靠
或锚定
您的用户控件
内的面板。在您的窗口中,
您可能再次需要将面板
停靠
或锚定
到表单内。You can anchor your user control by setting the
Anchor
.Here's a useful article
Edit:
In your
user control
You may also need to
Dock
orAnchor
the panel inside youruser control
.In your window
Again you may need to
Dock
orAnchor
the panel inside your form.