Windows手机启动画面不占全屏

时间:2014-06-30 02:39:17

标签: windows-phone-8

我按照http://www.c-sharpcorner.com/UploadFile/iersoy/creating-splash-screens-in-windows-phone-8-apps/的说明操作。当我启动我的简单应用程序时,斜杠屏幕显示。但是,它不包括显示网络状态和时间的顶部区域。有人可以帮忙吗?

2 个答案:

答案 0 :(得分:3)

在页面顶部的XAML中,将以下属性设置为false:

shell:SystemTray.IsVisible="False"

答案 1 :(得分:1)

你应该将弹出窗口和图像尺寸设置为768 x 1280,这是Splash Screen的通用尺寸,并在所有分辨率中设置,如果它不起作用,你应该按照下面提到的那样:

要显示所有分辨率的初始屏幕,请使用名为SplashScreenImage.jpg的单个图像文件768 × 1280。手机会自动将图像缩放到正确的大小。 如果要为所有分辨率提供像素完美的启动画面,可以使用以下文件名添加图像:

SplashScreenImage.Screen-WVGA.jpg
SplashScreenImage.Screen-WXGA.jpg
SplashScreenImage.Screen-720p.jpg

Windows Phone 8 Update 3默认使用1080p手机上的720p闪屏文件。

重要提示:

All splash screen images must be in the root folder of your app project.

有关详细信息,请参阅How to create a splash screen for Windows Phone.