首页 > 解决方案 > 无法使用 Prism Navigation 在 TabbedPage 中打开特定页面

问题描述

我的应用程序中有一个带有两个选项卡的 TabbedPage,我想使用 NavigateAsync 导航到特定选项卡,但是当我使用 NavigationService.NavigateAsync(“NavigationPage/TabbedPage/SelectedPage”)时,我的应用程序只打开堆栈中带有 TabbedPage 的 SelectedPage。我可以单击 SelectedPage 中的返回按钮返回到 TabbedPage。

有谁知道出了什么问题?

这是我的 TabbedPage axml:

<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
            xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
            xmlns:local="correct namespace was hide"
            xmlns:prism="clr-namespace:Prism.Mvvm;assembly=Prism.Forms"
            prism:ViewModelLocator.AutowireViewModel="True"
            x:Class="correct namespace was hide">
    <TabbedPage.Children>
        <local:Pacientes/>
        <local:Sobre/>
    </TabbedPage.Children>
</TabbedPage>

这是我在 App 类中的 OnInitialized 方法和 RegisterTypes:

protected override async void OnInitialized()
        {
            InitializeComponent();

            if (Device.RuntimePlatform.Equals(Device.Android))
            {
                await NavigationService.NavigateAsync("Android.Main/OdontoWayPacienteNavigation/Sobre");
            }
            else
            {
                await NavigationService.NavigateAsync("/NavigationPage/iOS.Main/Sobre");
            }
        }

        protected override void RegisterTypes(IContainerRegistry containerRegistry)
        {
            containerRegistry.RegisterForNavigation<OdontoWayPacienteNavigation>();
            containerRegistry.RegisterForNavigation<NavigationPage>();
            containerRegistry.RegisterForNavigation<Pacientes>();
            containerRegistry.RegisterForNavigation<Clinicas>();
            containerRegistry.RegisterForNavigation<PacienteEdit>();
            containerRegistry.RegisterForNavigation<ClinicaMap>();
            containerRegistry.RegisterForNavigation<LinkWeb>();
            containerRegistry.RegisterForNavigation<Sobre>();
            containerRegistry.RegisterForNavigation<Views.Android.PacienteAcessos, PacienteAcessosViewModel>("Android.PacienteAcessos");
            containerRegistry.RegisterForNavigation<Views.iOS.PacienteAcessos, PacienteAcessosViewModel>("iOS.PacienteAcessos");
            containerRegistry.RegisterForNavigation<Views.Android.Main, MainViewModel>("Android.Main");
            containerRegistry.RegisterForNavigation<Views.iOS.Main>("iOS.Main");
        }

标签: xamarinxamarin.formsprism

解决方案


解决方案发布在此链接https://forums.xamarin.com/discussion/comment/330770#Comment_330770

导航的行为在 prism 版本 7 中发生了变化。打开特定选项卡的新行为是

NavigateAsync("TabbedPage?selectedTab=PageName")

推荐阅读