I need to create a "please wait" window at the start up of my application, start animation and at the lifetime of app change visibility. I don`t want create explicitly new thread (Maybe ThreadPool or BackgroundWorker). Any ideas?
Asked
Active
Viewed 1,417 times
1 Answers
3
WPF has a very nice splash screen class exactly for that: http://www.codeproject.com/Articles/36418/WPF-Splash-Screen.aspx
Here is the quick steps:
- Add the image file to the WPF Application project. For more information, see How to: Add Existing Items to a Project.
- In Solution Explorer, select the image.
- Add the image file to the WPF Application project. For more information, see How to: Add Existing Items to a Project.
- In the Properties window, click the drop-down arrow for the Build Action property. Select SplashScreen from the drop-down list
(source here: WPF SplashScreen implementing)

Community
- 1
- 1

Teoman Soygul
- 25,584
- 6
- 69
- 80
-
But i want to use wpf animation and i want to change the message in the runtime. – Vladimir Nani Apr 21 '11 at 12:50
-
1If you use an animated gif, you'll see the animation. If you want to customize the slash dialog further, this may be a good start: http://www.codeproject.com/KB/WPF/WPFsplashscreen.aspx – Teoman Soygul Apr 21 '11 at 12:52