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?
Asked
Active
Viewed 3,338 times
2 Answers
7
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 !

Community
- 1
- 1

Joffrey Kern
- 6,449
- 3
- 25
- 25
-
1Short, sweet and simple explanation. +1 – Harshit Feb 24 '14 at 10:16
1
Use Extended Splash Screen
and set the animation to the image. For more details visit here.

Amit Singh
- 2,698
- 21
- 49
-
Link explains how to add simple image... but really helpful for those who only want to add static images... +1 – Harshit Feb 24 '14 at 10:18