I have a wpf application in mvvm pattern. In main view, I have few links to other views. But before displaying the contents(that is ... the links) in main view, I need to display an image in main view ....that means...a welcome image will be displayed first to the user...say for 2 seconds...and then display the actual contents.
Can anybody help me plz ?
The easiest solution would be to add an image to your project and set it's build action to SplashScreen
in the property window. This will cause the image to be shown while your application loads.
More details: How to: Add a Splash Screen to a WPF Application (MSDN).
Advantages:
Disadvantages: