我正在使用 Shell,我有 4 个页面,但是在您单击选项卡之前它不会开始尝试加载页面。
是否可以一次加载 Shell 中的所有选项卡?
<FlyoutItem FlyoutDisplayOptions="AsMultipleItems">
<Tab Title="Cotizaciones" Icon="quotation.png" Route="QuotationListPage">
<ShellContent Title="Cotizaciones" Icon="quotation.png" Route="QuotationListPage" ContentTemplate="{DataTemplate quotation:QuotationListPage}"/>
</Tab>
<Tab Title="Pedidos" Icon="order.png" Route="OrderListPage">
<ShellContent Title="Pedidos" Icon="order.png" Route="OrderListPage" ContentTemplate="{DataTemplate order:OrderListPage}"/>
</Tab>
<Tab Title="Entregas" Icon="delivery.png" Route="DeliveryListPage">
<ShellContent Title="Entregas" Icon="delivery.png" Route="DeliveryListPage" ContentTemplate="{DataTemplate delivery:DeliveryListPage}"/>
</Tab>
<Tab Title="Solicitudes" Icon="user.png" Route="ClientFormListPage">
<ShellContent Title="Solicitudes Clientes" Icon="user.png" Route="ClientFormListPage" ContentTemplate="{DataTemplate clientform:ClientFormListPage}"/>
</Tab>
</FlyoutItem>