如何以本机形式从内容页面导航到Shell?

时间:2019-06-28 12:36:57

标签: xamarin.forms xamarin.android

在我的xamarin表单本机3.x项目中,当前我正在使用以下代码从内容页面导航到内容页面

Android.Support.V4.App.Fragment mainPage = new ContentPage().CreateSupportFragment(this);

        SupportFragmentManager
            .BeginTransaction()
            .Replace(Resource.Id.fragment_frame_layout, mainPage)
            .Commit();

参考:-https://docs.microsoft.com/en-us/xamarin/xamarin-forms/platform/native-forms

但是,这在从内容页面导航到Shell(Xamarin Forms 4.0.0)的情况下不起作用。

感谢您的帮助。

0 个答案:

没有答案