0

有3个xaml页面,其中2个以不同的参数调用第三个页面。如何在第三页写 onNavigatedTo()?

我正在使用 NavigationService.Navigate(new Uri("/third.xaml?paramter=xxxx", UriKind.Relative));

4

1 回答 1

0

从http://msdn.microsoft.com/en-us/library/windowsphone/develop/ff626521(v=vs.105).aspx借用并改编了这段代码。

protected override void OnNavigatedTo(System.Windows.Navigation.NavigationEventArgs e)
{
    base.OnNavigatedTo(e);

    string msg = "";

    if (NavigationContext.QueryString.TryGetValue("parameter", out msg))
       // now your parameter is in the msg variable, and you could do stuff here.

    }
于 2013-08-01T22:46:51.600 回答