单击按钮时显示另一个布局
我有一个布局 MainPage.xaml,其中有图像和按钮。 单击按钮时,我希望显示另一个布局 Top.xaml,以便 MainPage.xaml 变得不可见。 我是 Windows Phone 7 新手? 有人可以帮忙吗?
I have a layout MainPage.xaml in which i have images and a button.
On click of button i want another layout Top.xaml to be displayed such that MainPage.xaml becomes invisible.
I am new to Windows phone 7?
Can someone help out?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于您想要做什么。您可以使用以下方法从 MainPage.xaml 导航到 Top.xaml:
如果您只想在布局之间切换(即不导航到整个新页面),则可以在一个 XAML 页面中实现这两种布局,并使用 VisualStateManager 在它们之间切换。创建一种称为“Main”的状态,另一种称为“Top”,然后从一种状态切换到另一种状态,如下所示:
这完全取决于您想要如何布局代码以及您期望后退按钮如何工作。使用状态意味着您必须自己处理后退按钮。
This depends on what you are looking to do. You can either navigate from MainPage.xaml to Top.xaml using
If you just want to switch between layouts (i.e. not navigate to a whole new page) you can implement both layouts in one XAML page and switch between them using VisualStateManager. Create one state called "Main" and other called "Top" then switch from one to the other as follows:
It all depends on how you want to layout your code and also how you expect the back button to work. Using states means you will have to handle the back button yourself.