我对Xamarin.Forms和C#完全不熟悉,我想知道如何在NavigationPage中显示一叠Pages,而不显示导航栏.这是我在App.cs中的代码:
using Xamarin.Forms;
namespace Test
{
public class App
{
public static Page GetMainPage ()
{
return new NavigationPage (new StartPage ());
}
}
}
Run Code Online (Sandbox Code Playgroud)
我该怎么做才能在StartPage显示时在屏幕上看不到导航栏?