在自定义/用户控件 (Winforms) 中添加对嵌套容器的设计时支持
我有类似于向导控件的东西,中间是一个我想用来放置任何子控件的面板。
我发现使用 ScrollableControlDesigner 将允许将删除的控件添加到自定义/用户控件中,但这不是我所需要的。 它需要添加到容器中,以便可以应用布局而不影响“外部”控件(标题、导航按钮)。
我尝试了各种方法,但没有成功,而且看起来很糟糕。
有任何想法吗?
I have something similar to a wizard control, in the middle is a Panel I would like to use to place any child controls.
I have found using the ScrollableControlDesigner will allow dropped controls to be added to the custom/usercontrol, but this is not what I require. It needs to be added to the container, so layout can be applied without affecting the 'outer' controls (heading, navigation buttons).
I have tried various ways, that did not work, and looked hacky.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了答案 这里!
关键是
ControlDesigner.EnableDesignMode()
。I found the answer here!
The key is
ControlDesigner.EnableDesignMode()
.