WinRT/UWP Frame and Page caching: How to create new page instance on Navigate() and keep the page instance on GoBack()(WinRT/UWP 帧和页面缓存:如何在 Navigate() 上创建新页面实例并将页面实例保留在 GoBack() 上)
问题描述
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.
TvShowListPageis the entry page. After clicking on aTvShownavigate toTvShowDetailsPage.- Now in
TvShowDetailsPageselect a season in the list and navigate to theTvShowDetailsPage. - If navigating back, the pages should stay in memory to avoid reloading the pages.
- But if the users goes back to
TvShowListPageand selects anotherTvShowtheTvShowDetailsPagegets 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:
- http://www.jayway.com/2012/05/25/clearing-the-windows-8-page-cache/: No good solution
- http://social.msdn.microsoft.com/Forums/en-US/winappswithcsharp/thread/88e6d1b3-1fa6-4ab4-a816-e77c86ef236f/: Implementing of an own Frame class is no solution as it doesn't work with
SuspensionManager
Because there was no solution to this problem, I had to reimplement all paging relevant classes: Page, Frame, SuspensionManager, etc...
The solution can be downloaded here: https://github.com/MyToolkit/MyToolkit/wiki/Paging-Overview
Update:
The page class now also provides the OnNavigatingFromAsync method to show for example an async popup and cancel navigation if required...
这篇关于WinRT/UWP 帧和页面缓存:如何在 Navigate() 上创建新页面实例并将页面实例保留在 GoBack() 上的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:WinRT/UWP 帧和页面缓存:如何在 Navigate() 上创建新页面实例并将页面实例保留在 GoBack() 上
基础教程推荐
- Mono https webrequest 失败并显示“身份验证或解密失败" 2022-01-01
- 将数据集转换为列表 2022-01-01
- 获取C#保存对话框的文件路径 2022-01-01
- 如果条件可以为空 2022-01-01
- SonarQube C# 分析失败“不是指针的有效行偏移" 2022-01-01
- 在 VB6 或经典 ASP 中使用 .NET 2022-01-01
- 更新 Visual Studio 中的 DataSet 结构以匹配新的 SQL 数据库结构 2022-01-01
- 重新排序 WPF TabControl 中的选项卡 2022-01-01
- C# 9 新特性——record的相关总结 2023-04-03
- 从 C# 控制相机设备 2022-01-01
