一个选项卡式页面内的多个内容页面

Multiple Content Pages inside one Tabbed Page

我在没有使用 TabbedPage 模板的情况下从头开始开发我的应用程序,我真的不知道如何将我的多个内容页面放在一个 TabbedPage 中。现在我的选项卡式导航 XAML 看起来像这样:

<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
         xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml" 
        xmlns:parkingapp="clr-namespace:ParkingApp.Views"
        x:Class="ParkingApp.Tabbed"
        xmlns:android="clr-namespace:Xamarin.Forms.PlatformConfiguration.AndroidSpecific;assembly=Xamarin.Forms.Core"
        android:TabbedPage.ToolbarPlacement="Bottom">
<parkingapp:Profile Title="Profile"></parkingapp:Profile>
<parkingapp:MainPage Title="Parking" ></parkingapp:MainPage>

这很好用,我可以导航到“配置文件”和“停车”,但在“停车”中我有导航到另一个内容页面的按钮,一旦我进入另一个内容页面,我的选项卡式导航栏就不会显示,我想要它显示在我的所有内容页面中。

如果您想在标签内导航,请将该标签的内容放在 NavigationPage 内。

<NavigationPage>
    <x:Arguments>
        <parkingapp:Profile Title="Profile" />
    </x:Arguments>
<NavigationPage>

Example