C# 如何设计面板供以后使用..(设置屏幕)
所以我现在正在制作一个设置屏幕,左侧有一棵树,右侧有一个面板。屏幕上的面板将取决于选择的树项目。
只是想知道如何设计这些面板并保存主题以供稍后使用(运行时)。
我是否需要把它们画出来等查看代码然后复制到类或其他东西中?
抱歉,如果我的问题有点模糊,但我不太确定我想要什么:-O
编辑 是的,我希望制作一个类似于 Visual Studio 中的设置屏幕。左边是一棵树(类似浏览器),然后是每个树节点的新表单布局。
So i'm making a settings screen at the moment where i'll have a tree on the left then a panel on the right. The panel thats on screen will depend on what tree item is selected..
Just wondering how do I go about designing these panels and saving theme for use later on (runtime).
Do I need to go and draw them out etc. view code then copy into a class or something?
Sorry if my question is a bit vague but i'm not really sure what I want :-O
EDIT Yes, i'm looking to make a settings screen like the one found in Visual Studio. A tree on the left (explorer like) and then a new form layout for each tree node.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要创建用户控件而不是面板,它很容易在设计器中编辑。将树视图停靠在左侧并使用如下代码来选择活动用户控件:
You'll want to create UserControls instead of a Panel, it is easy to edit in the designer. Dock the tree view to the left and use code like this to select the active user control: