例如,我想动态保存打开的 TabViewItems,以便用户可以切换到另一个页面并返回他的工作。
问问题
1172 次
1 回答
0
NavigationView 类的页面导航后打开之前的 TabViewItems
DataSource
如果您在 Page ctor 中初始化 TabView ,则可以将页面设置NavigationCacheMode
为Required
如下所示
<Page
x:Class="App19.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="using:App19"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:muxc="using:Microsoft.UI.Xaml.Controls"
Background="Transparent"
NavigationCacheMode="Required"
mc:Ignorable="d">
于 2021-05-03T03:16:57.280 回答