使用 VS 表单设计器将控件放入超类中定义的容器中?

发布于 2024-11-19 07:37:19 字数 227 浏览 2 评论 0原文

我使用的是 Visual Studio 2010,并且有一个基类 Form 和几个其他窗体的子类。我可以在父表单中创建一个容器,例如 Panel。但在子窗体的设计器中,我无法在容器内创建控件。我尝试将容器设置为“受保护”,但似乎没有任何区别。

有什么方法可以在基类中创建一个容器(我真的想要一个 FlowLayoutPanel ),以便我可以在子类的设计器中与它进行交互?

I'm using Visual Studio 2010, and I have a base class Form, and several other forms subclassing it. I can create a container, such as a Panel in the parent form. In the designers for the child forms though, I'm unable to create controls inside the container. I tried setting the container to protected, but it doesn't appear to make any difference.

Is there any way I can create a container (I really want a FlowLayoutPanel) in the base class in a way that will allow me to interact with it in the designers for the subclasses?

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

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

发布评论

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

评论(1

时常饿 2024-11-26 07:37:19

您应该将面板的修改器标志设置为“受保护”。另请参阅
演练:演示视觉继承 MSDN 主题。

You should set the Modifiers flag of your panel to Protected. Please also refer to the
Walkthrough: Demonstrating Visual Inheritance MSDN topic.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文