Similar questions have been asked before but this question strives to explore more options and the ability to pass complex objects.
The question is how to pass parameters but it really needs to be broken up into three parts..
- When navigating between pages in an XAML application how do you pass parameters?
- What is the difference between using the Uri navigation and manual navigation?
- How can objects (not just strings) be passed when using Uri navigation?
Example of Uri navigation
page.NavigationService.Navigate(new Uri("/Views/Page.xaml", UriKind.Relative));
Example of manual navigation
page.NavigationService.Navigate(new Page());
The answer to this question applies to WP7, silverlight, WPF and Windows 8.
Note: There is a difference between Silverlight and Windows8
- Windows Phone: pages are navigated to using a Uri and data passed as a query string or an instance
- Windows 8: pages are navigated to by passing the type, and parameters as objects
Methods to pass parameters
1. Using the query string
You can pass parameters through the query string, using this method means have to convert your data to strings and url encode them. You should only use this to pass simple data.
Navigating page:
Destination page:
2. Using NavigationEventArgs
Navigating page:
Destination page:
3. Using Manual navigation
Navigating page:
Destination page:
Difference between Uri and manual navigation
I think the main difference here is the application life cycle. Pages created manually are kept in memory for navigation reasons. Read more about it here.
Passing complex objects
You can use method one or two to pass complex objects (recommended). You can also add custom properties to the
Application
class or store data inApplication.Current.Properties
.