madhu kumar
madhu kumar

Reputation: 810

How to animate image in splash screen for windows phone?

I am working on windows phone app in which I need to animate an object in the splash screen. In the below image you can see that, as soon as the splash screen appears. The ball.png bounces and only after completing the bounce, the app continues into the application. How to do this task?

enter image description here

Upvotes: 3

Views: 3356

Answers (2)

Amit Singh
Amit Singh

Reputation: 2698

Use Extended Splash Screen and set the animation to the image. For more details visit here.

Upvotes: 1

Joffrey Kern
Joffrey Kern

Reputation: 6499

You have to follow thoses steps to create an animated splashscreen :

  • You have to create a new Page on your application (called SplashScreen.xaml) and set it as your 'HomePage'.
  • You create a storyboard to build your animation.
  • You subscribe to the Loaded event of the SplashScreen page, and start your storyboard.
  • When the storyboard is done (subscribe to the Completed event), you can navigate to your Homepage.

Hope it helps !

Upvotes: 7

Related Questions