我有MainPage.xaml
和PanoramaPage1.xaml
。
如何从MainPage
toItem1
或Item2
in导航PanoramaPage
?
例如:
Button1->Item1
和Button2->Item2
我有MainPage.xaml
和PanoramaPage1.xaml
。
如何从MainPage
toItem1
或Item2
in导航PanoramaPage
?
例如:
Button1->Item1
和Button2->Item2
您可以使用标准导航:
this.NavigationService.Navigate(new Uri("PanoramaPage1.xaml?buttonid=button1",UriKind.Relative));
在对象变量中传递您的目标,然后在全景页面中处理:
protected override void OnNavigatedTo(NavigationEventArgs e)
{
if ( this.NavigationContext.QueryString.ContainsKey( "buttonid" )
{
string buttonid = this.NavigationContext.QueryString[ "buttonid" ];
}
}