我想从2个不同的页面p2和p3导航到页面p1。 页面p2和p3都将参数传递给页面p1。 这是页面p2和p3的按钮代码
第p2页:
private void button1_Click_1(object sender, RoutedEventArgs e)
{
ListBoxItem l = (ListBoxItem)listBox1.SelectedItem;
string s = (string)l.Content;
NavigationService.Navigate(new Uri("/Page1.xaml?ok=" + s, UriKind.RelativeOrAbsolute));
}
第p3页:
private void button1_Click_1(object sender, RoutedEventArgs e)
{
ListBoxItem l = (ListBoxItem)listBox1.SelectedItem;
string s = (string)l.Content;
NavigationService.Navigate(new Uri("/Page1.xaml?ko=" + s, UriKind.RelativeOrAbsolute));
}
我想知道第p1页中的OnNavigatedTo函数的代码,以便它可以接收这两个参数并将它们显示在2个不同的文本块中。
答案 0 :(得分:0)
由于您的参数名称不同,因此查询每个参数的时间并不算太大。
string ok = string.Empty;
NavigationContext.QueryString.TryGetValue("ok", out ok);
string ko = string.Empty;
NavigationContext.QueryString.TryGetValue("ko", out ko);