在Windows Phone 8.1上删除启动画面

时间:2016-01-28 13:46:22

标签: c# windows-phone-8.1 splash-screen

是否可以删除Windows Phone 8.1上的默认启动画面?对于应用程序我的开发,我不需要启动画面。

由于

2 个答案:

答案 0 :(得分:3)

如果您打开Visual Assets选项卡,则可以将Assets\SplashScreen.png更改为您想要的任何内容。

我不确定这是否可以删除,但如果没有,我想如果你想伪造行为,我可以将其更改为你应用的屏幕截图。

答案 1 :(得分:0)

在OnNavigatedTo方法的扩展SplashScreen页面中,启动dispatchTimer并将计时器设置为您需要的时间,然后按照您的意愿执行。

Loader.IsActive=true;
            DispatcherTimer _timer = new DispatcherTimer() { Interval = TimeSpan.FromMilliseconds(2000) };
            _timer.Start();
            _timer.Tick+=_timer_Tick;