Ozzy
Ozzy

Reputation: 10643

C# Splash Loading Page

Im about to start working on a big application (big for me anyway :P) and i was wondering, how do i create a splash page for the program that shows up as soon as the exe is launched and disappears when all of the exe is loaded?

Upvotes: 7

Views: 2868

Answers (2)

Chris
Chris

Reputation: 27384

If you are using WPF then simply load an image into the project, right click > properties, and choose splash screen. WPF should take care of the rest for you :)

Upvotes: 0

user27414
user27414

Reputation:

MS made this easy if you're using VB.NET. However, you can still make this work in C#. Have a look at WindowsFormsApplicationBase.

See this question, too.

Upvotes: 1

Related Questions