I'm just learning about how to navigate between pages and tombstoning. I'm wondering if anyone can point me to some good examples that not only show me the basics of how to use Navigation properly but also good examples of more complicated and advanced navigation issues?

  • Some questions I have revolve around memory leaks when navigating to other pages and navigating back?
  • Is there a close page call, once the page has done its job (I don't want an instance of it hanging around after I'm done with it)?
  • Another question is how to I maintain state if the app gets tombstoned (still trying to wrap my head around that term).

Thanks!

link|improve this question

feedback

4 Answers

up vote 3 down vote accepted

There's no close page call, the OS automatically closes pages when they're backed out and releases used memory (so there should be no leaks here).

Some resources here that cover tombstoning and advanced navigation concepts.

Understanding the Windows Phone Application Execution Model, Tombstoning, Launcher and Choosers, and Few More Things That Are on the Way – Part 1, Part 2, Part 3

Introducing the concept of “Places” - Peter Torr's Blog

Redirecting an initial navigation - Peter Torr's Blog

link|improve this answer
feedback

I like thinking about WP7 navigation like a simple browser that only have back button. The Naviation model is based on stack pattern (Last In First Out), need to get through all to get back to first page. This is not what PC user are used to but in mobile world is one of the best solution. You have to stick to this model and never ever do "go to home page" button - your app will not pass the certification for sure(there are some workaround with excetions but I wouldnt recommend that). A lot of pages can get the user pissed that's why a good idea is to have 3 to 5 pages max. For instance, first page user picks what he is going to do, next page is login page and then for more complex interface use panorama and pivot control.

To the simple browser model add cookies. When your browser load a page it sets a cookie with some information, next you close the browser and when you go back to the page it can get the previous state from that cookie. Tombstoning is very simailar. - link. Some more info about tombstoning

Some questions I have revolve around memory leaks when navigating to other pages and navigating back?

What do you mean by memory leaks? you are working in managed framework.

Is there a close page call, once the page has done its job (I don't want an instance of it hanging around after I'm done with it)?

you do not have to do this. Page is destroyed everytime you go to the next page unless a thread is still working there.

Another question is how to I maintain state if the app gets tombstoned (still trying to wrap my head around that term).

Basically it's up to develepor to manage this. It is not mandatory but gives a nice user experience.

link|improve this answer
feedback

Another question is how to I maintain state if the app gets tombstoned (still trying to wrap my head around that term).

Use Isolated Storage.

link|improve this answer
feedback

You can have a look into Columbus MVC framework for WP7 source code (http://columbus.codeplex.com/) that I have published recently. Columbus addresses both Navigation and Tombstoning (provides strongly typed navigation with history and View Models that can survive tombstoning).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.