Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将数据从 page1 传递到 page2。我们可以通过 Windows Phone 中的代码来实现这一点...
有没有办法在 0% c# 代码和 100% xaml 代码中实现这一点.. 有人指导我吗?.. 这真的很有帮助......
您可以通过使用超链接按钮来实现此目的
<HyperlinkButton NavigateUri="/Page2.xaml?data=somedata" Content="click" />
如果您将状态保存在设备本身(在数据库或序列化文件中),则可以执行此操作。然后你只需将它保存在页面更改并在页面打开时打开它。