读这个:
http://paulstovell.com/blog/wpf-navigation
虽然不是很明显,但您可以将查询字符串数据传递到页面,并从路径中提取它。例如,您的超链接可以在 URI 中传递一个值:
<TextBlock>
<Hyperlink NavigateUri="Page2.xaml?Message=Hello">Go to page 2</Hyperlink>
</TextBlock>
页面加载后,可以通过 NavigationService.CurrentSource 提取参数,返回一个 Uri 对象。然后它可以检查 Uri 以分离这些值。但是,我强烈建议不要使用这种方法,除非在最可怕的情况下。
一个更好的方法是使用 NavigationService.Navigate 的重载,它接受一个对象作为参数。您可以自己初始化对象,例如:
Customer selectedCustomer = (Customer)listBox.SelectedItem;
this.NavigationService.Navigate(new CustomerDetailsPage(selectedCustomer));
这假定页面构造函数接收一个 Customer 对象作为参数。这允许您在页面之间传递更丰富的信息,而无需解析字符串。