如何在 xamarin 表单中将一个内容页面从客户端项目 (IOS/Android) 导航到另一个内容页面?

How to navigate one Content page to another Content page from client project (IOS/Android) in xamarin forms?

如何在 xamarin 表单中从一个内容页面导航到另一个内容页面?

我已经以不同的方式在每个平台上实现了推送通知。我需要从当前内容页面导航到另一个内容。

我尝试在 GCMService 的 OnMessage 方法中使用以下代码。 我的问题是第二个导航内容页面的构造函数被调用并成功调试。但是我的屏幕仍然显示当前页面不显示第二个导航内容页面。

App.Current.MainPage.Navigation.PushAsync (new SecondNavigationContentPage());

“主页”必须是导航页面才能使用推送弹出式导航进行导航。你有几个选择。

选项 1:

将 MainPage 替换为新页面并使用内容页面。

App.Current.MainPage = your new content page

选项 2:(可能是更好的选项)

制作 App.Current.MainPage NavigationPage 而不是 ContentPage,然后将您的第一个内容页面推送到它。当您需要转到第二个内容页面时,请使用推送导航架构。

App.Current.MainPage = new NavigationPage;
App.Current.MainPage.Navigation.PushAsync(Page1);
App.Current.MainPage.Navigation.PushAsync(Page2);

文档:http://developer.xamarin.com/guides/cross-platform/xamarin-forms/controls/pages/

更新

请注意,由于这个答案已经出现了更好的导航方式,例如 docs.microsoft。com/en-us/xamarin/xamarin-forms/app-fundamentals/... app shell routing.

其他选择是 Prism MVVM 或您自己的视图模型定位器 prismlibrary。com/docs/viewmodel-locator。html。使用这种内置导航的缺点是它缺少视图模型来查看模型导航,并且依赖于页面到页面,这会导致不必要的视图耦合和简单笨拙的导航。