how to set splash screen in window phone 8 Application development

后端 未结 3 830
南旧
南旧 2020-12-30 08:49

I am new in Window Phone Apps Development .So I just Want to Add Splash Screen When the application launch without using any extra Page navigation for splash screen.

3条回答
  •  伪装坚强ぢ
    2020-12-30 09:15

    When you want to add a splash screen in your app, you have two options:

    1. You can add a single splash screen image that the phone automatically scales for the three supported phone resolutions.

    (If you’re using a single image, you should add an image file that is 768 × 1,280 and named SplashScreenImage.jpg to your app project. The phone automatically scales the image to the correct size)

    1. If you want to provide pixel-perfect splash screens for all resolutions, you can add the following images to the root folder of your app project:

      • WVGA 480 × 800 SplashScreenImage.screen-WVGA.jpg
      • WXGA 768 × 1,280 SplashScreenImage.screen-WXGA.jpg
      • 720p 720 × 1,280 SplashScreenImage.screen-720p.jpg

提交回复
热议问题