如何只显示一次时间页面Windows Phone 8.1 Runtime

时间:2015-03-09 06:22:38

标签: windows-runtime windows-phone-8.1

我希望只有在应用程序启动后才能显示一个页面,下次再进入主屏幕。我试图查看NavigationHelper但是没有工作!

1 个答案:

答案 0 :(得分:0)

检入App.xaml.cs文件,您应该在OnLaunched方法中看到类似代码的内容:

if (rootFrame.Content == null)
{
    // When the navigation stack isn't restored navigate to the first page,
    // configuring the new page by passing required information as a navigation
    // parameter
    if (!rootFrame.Navigate(typeof(MainPage), args.Arguments))
    {
        throw new Exception("Failed to create initial page");
    }
}

在这里,您可以检查该应用是否是第一次启动(例如,通过在手机上存储值),并将呼叫替换为您要导航到的页面的rootFrame.Navigate(typeof(MainPage), args.Arguments))。< / p>