如何在 Expression Blend 中使用面板
在 Windows 窗体中,我可以在面板 1 和面板 2 之间切换。 我的意思是从面板 1 单击按钮后,我想显示面板 2。从面板 2 单击按钮后,我想显示面板 1。我想在表达式混合中执行此操作。谢谢。
In windows form, I can toggle between panel 1 and panel 2.
I mean after the button is clicked from panel 1, i want to show panel2. After button is clicked from panel 2, I want to show panel 1. I want to do this in expression blend. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以挂钩按钮单击事件并将面板的 Visibility 属性设置为折叠(以隐藏面板)或可见(以显示),然后只需在它们之间切换即可显示当前面板。
You can hook up button click events and set the Visibility property of panel to collapsed(to hide the panel) or to visible(to show), and just toggle between them to show the corrent panel.