I am developing a Windows Phone 7 silverlight application but, i can’t use the session values to “navigate” between different pages on windows phone 7.
I also used “Isolated Storage” but i couldn’t get the values.
I am developing a Windows Phone 7 silverlight application but, i can’t use the
Share
This sample shows some persistence mechanisms:
http://www.scottlogic.co.uk/blog/colin/2011/05/a-simple-windows-phone-7-mvvm-tombstoning-example/
You can also use Query Strings to pass information between two pages. The values that make up a query string are appended to the URI.
Personally, I have a centralised controller class that gets instantiated with the main
Appclass. Any values that need passing are placed in here, in one way or another.