标签: shell xamarin xamarin.forms
我需要使用Shell来构建Xamarin.Forms应用程序。我的页面流程如下。
使用Shell可以实现吗?
答案 0 :(得分:1)
要实现此目的,您可以在App.xaml.cs集启动应用时
App.xaml.cs
MainPage = new WalkThroughPage();
演练完成后,您可以将Application.Current.Mainpage设置为您的Shell页面。
Application.Current.MainPage = new MyShellPage();