WPF - 实现隐藏面板的最佳方法是什么?
我有一个主应用程序窗口,它也实现了停靠面板。在现有停靠面板之一的底部,我想添加一个用户可以随意隐藏或查看的窗口。实现这一点的最佳方法是什么?我可以想象这背后的大部分代码,我只需要找出该窗口在需要时出现的适当控件,但仍然可以单独使用。
I have a main application window that also implements a dock panel. At the bottom of one of the existing dock panels, I want to add a window that the user can hide or view at will. What's the best way to implement this? I can envision most of the code behind this, I just need to figure out the appropriate control for this window to appear when needed but still be discretely available.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Expander 控件可能就是您正在寻找的为了。这是一个 ContentControl,因此您可以使用任何您想要的面板作为内容。
An Expander control might be what you are looking for. This is a ContentControl so you can use whatever Panel you want as the content.