自带面板组件
我想创建我自己的组件,其中包含另外两个面板。其中一个有固定的内容(例如控制按钮等),另一个是标准面板,我可以在设计器(VS2008)中添加其他组件。 我知道我必须创建 UserControl,我可以在其中放置两个面板。然后我想将我的组件插入表单中。但我不知道如何创建只能将其他组件(例如按钮、标签等)添加到组件中的第二个面板中的行为。 有人可以帮我创建这个组件吗?
谢谢。 亚当.
I want to create my own component which consists two other panels. One of them has fixed contents (such as control buttons, etc.) and the other is standard panel, where I can add other components in designer (VS2008).
I know that I have to create UserControl, where I can place my two panels. Then I want to insert my component into the form. But I don't know how to create behavior where I can add other components (such as buttons, labels, etc.) only into second panel in my component.
Could anyone help me with creating this component?
Thank you.
Adam.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是一个示例(工作代码片段):
Here is an example (snippet of working code):
我已经找到了正确的解决方案(我希望)。我已在我的 UserControl 中添加了一个属性,该属性返回具有此特定属性的内容面板:
感谢您的帮助 leppie
I have found the correct solution (I hope). I have added into my UserControl a property which returns the content panel with this specific Attribute:
Thanks for your help leppie