之前已经提出了类似的问题,但这个问题正在努力探索更多选项和传递复杂对象的能力。
问题是如何传递参数,但它确实需要分解为三个部分。
Uri导航示例
page.NavigationService.Navigate(new Uri("/Views/Page.xaml", UriKind.Relative));
手动导航示例
page.NavigationService.Navigate(new Page());
此问题的答案适用于WP7,Silverlight,WPF和Windows 8。
注意:Silverlight和Windows8之间存在差异
答案 0 :(得分:85)
<强> 1。使用查询字符串
您可以通过查询字符串传递参数,使用此方法意味着必须将数据转换为字符串并对其进行网址编码。您应该只使用它来传递简单数据。
浏览页面:
page.NavigationService.Navigate(new Uri("/Views/Page.xaml?parameter=test", UriKind.Relative));
目标网页:
string parameter = string.Empty;
if (NavigationContext.QueryString.TryGetValue("parameter", out parameter)) {
this.label.Text = parameter;
}
<强> 2。使用NavigationEventArgs
浏览页面:
page.NavigationService.Navigate(new Uri("/Views/Page.xaml?parameter=test", UriKind.Relative));
// and ..
protected override void OnNavigatedFrom(NavigationEventArgs e)
{
// NavigationEventArgs returns destination page
Page destinationPage = e.Content as Page;
if (destinationPage != null) {
// Change property of destination page
destinationPage.PublicProperty = "String or object..";
}
}
目标网页:
// Just use the value of "PublicProperty"..
第3。使用手动导航
浏览页面:
page.NavigationService.Navigate(new Page("passing a string to the constructor"));
目标网页:
public Page(string value) {
// Use the value in the constructor...
}
我认为这里的主要区别是应用程序生命周期。由于导航原因,手动创建的页面会保留在内存中。阅读更多相关信息here。
您可以使用方法一或二来传递复杂对象(推荐)。您还可以向Application
类添加自定义属性,或在Application.Current.Properties
中存储数据。