I have an application that can fire several pages depending on the button I press.
When returning to the main page, is there a way to determine which page it is coming from?
I looked into onNavigatedTo, onNavigatingFrom or onNavigatedFrom, when coming back from a page, only onNavigatedTo is called.
I’m targeting WP7 7.0, I see that in 7.1 there’s now a BackStack property but it isn’t available in 7.0.
I find it quite amazing on how difficult it is to know such important information, at the end of the day, all I’m looking for is being able to pass parameters back from a page to the original caller
(I did read How to access the URI of the previous page in Windows Phone 7, but that answer isn’t suitable using 7.0)
I have need to do this as well but I don’t think this is provided ‘out of the box’. You might have to write you own way of doing it. You could save the current page into isolated storage and update it each time you leave a page.