2012-08-17 56 views
1

完成我的Windows 8 Metro应用程序后,我试图通过“Windows应用程序认证套件”测试推送它。它失败了,因为我的SplashScreen标志太大了。我得到以下信息:VS2012 Metro应用程序启动画面 - 失败WACK测试

App resources validation 
Error Found: The app resources validation test detected the following errors: 
- Image reference "Assets\SplashScreen.png": The image "c:\MyProject\bin\Release\AppX\Assets\SplashScreen.png" failed the size restrictions of 620 X 300. 

不过,我有这样的尺寸缩小到比现在这样(225×300)要小得多,但我仍然得到错误。另外,当我运行应用程序时,启动画面显示的尺寸相同(但分辨率要低得多)。

任何人都可以告诉我我需要做些什么来使程序识别出尺寸减小吗?

回答

3

splashscreen应该是正好 620 x 300像素。打开package.appmanifest文件,您会在启动画面图像名称上看到红色错误标志。您可以使用透明背景来弥补必须包含的额外边距才能达到正确的尺寸。

相关问题