0
有3個XAML頁面,其中2稱之爲第三頁有不同的參數。我怎樣寫的OnNavigatedTo()在第三頁?參數XAML之間傳遞的Windows Phone
正在使用NavigationService.Navigate(new Uri("/third.xaml?paramter=xxxx", UriKind.Relative));
有3個XAML頁面,其中2稱之爲第三頁有不同的參數。我怎樣寫的OnNavigatedTo()在第三頁?參數XAML之間傳遞的Windows Phone
正在使用NavigationService.Navigate(new Uri("/third.xaml?paramter=xxxx", UriKind.Relative));
借入和從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.
}
的可能重複[如何通過XAML頁面之間的值(參數)?](http://stackoverflow.com/questions/12444816/how-to-pass-values-parameters-between-xaml-pages ) –
http://msdn.microsoft.com/en-us/library/windowsphone/develop/ff626521(v=vs.105).aspx –