right now I have an app with a couple of pages in which the user uses a ListPicker to select certain values, which are saved into public string variables. When the user reaches the last page, several textblock controls read the string variables and display the string. Along with this, a timer is shown that starts counting when the user reached this last page.
Now, if the user leaves the app by pressing the home button and then uses the app switcher to go back to it, the last page shows up without a hitch, all textblocks showing their variables and the timer hasn't stopped. However, if the user relaunches the app from the home screen instead of switching to it, all variables are lost and the app starts on the first page.
What I want to do is save the string variables and the timer, and have the app load the variables on startup if != null. If they exist, and the app is able to load them, navigate to the last page and show them. Otherwise, if there are no variables to load, simply continue normal operations.
How can I go about doing this? I've read about isolated storage and saving states, but quite honestly, haven't been able to accomplish anything, and it's really driving me crazy. Any help would be greatly appreciated.