Reputation: 32481
When I use the AddNewItem
to add an splash screen to a project, It adds an image file to the project. But I want to know if it is possible to make a Window
as the Splash Screen of a WPF project.
I tried to set the BuildAction
property of a Window
to SplashScreen
but the project fails to compile.
Upvotes: 0
Views: 229
Reputation: 2673
The Andy Lang apparently explained to make the splash screen with this single steps.
Please refer
http://www.codeproject.com/Articles/38291/Implement-Splash-Screen-with-WPF
Upvotes: 3
Reputation: 18443
You need to create a normal window, put an image inside the window, and show and hide it at appropriate times. No such thing as 'Splash Screen' exists it .NET.
Upvotes: 0