0

例如,我想动态保存打开的 TabViewItems,以便用户可以切换到另一个页面并返回他的工作。


问题:

GIF - 选项卡视图

4

1 回答 1

0

NavigationView 类的页面导航后打开之前的 TabViewItems

DataSource如果您在 Page ctor 中初始化 TabView ,则可以将页面设置NavigationCacheModeRequired如下所示

<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 回答