I'm trying to create an UWP (Universal Windows App) application with C#. My problem is the Frame
control: If I use it without NavigationCacheMode = Required
, every time the user goes back, the page is not kept in memory and will be recreated. If I set NavigationCacheMode
to Required
or Enabled
, going back works correctly (no new page object) but if I navigate to another page from the same type, the previous page object is recycled and reused (no new page instance).
Desired behavior:
Is there a way to have the following behaviour with the original Frame
control (like in Windows Phone):
- Create new page instance on
Navigate()
- Keep the page instance on
GoBack()
The only solution I know is to create an own Frame
control but this leads to other problems (e.g.: missing SetNavigationState()
method, etc...)
Sample scenario:
Simple application example with three pages: TvShowListPage
, TvShowDetailsPage
, SeasonDetailsPage
.
TvShowListPage
is the entry page. After clicking on a TvShow
navigate to TvShowDetailsPage
.
- Now in
TvShowDetailsPage
select a season in the list and navigate to the TvShowDetailsPage
.
- If navigating back, the pages should stay in memory to avoid reloading the pages.
- But if the users goes back to
TvShowListPage
and selects another TvShow
the TvShowDetailsPage
gets recycled and is maybe in the wrong state (eg showing the cast pivot instead of the first, seasons pivot)
I'm looking for the default Windows Phone 7 behavior: Navigating creates a new page on the page stack, going back removes the top page from the stack and displays the previous page from the stack (stored in the memory).
Solution:
Because there was no solution to this problem, I had to reimplement all paging relevant classes: Page, Frame, SuspensionManager, etc...
The library MyToolkit which provides all these classes can be downloaded here: https://github.com/MyToolkit/MyToolkit/wiki/Paging-Overview
References:
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…