Splash C # Download Page

I'm going to start working on a large application (for me it doesn't matter: P), and I was wondering how to create a popup page for a program that appears as soon as exe starts and disappears when everything is loaded with exe?

+7
c # winforms load splash-screen
source share
3 answers

MS made this easy if you use VB.NET. However, you can still do this work in C #. See WindowsFormsApplicationBase .

See this question .

+1
source share

Check out this code draft article. It includes both the full screen saver code and an example of its use.

+2
source share

If you are using WPF, just upload the image to the project, right-click> properties and select a splash screen. WPF should take care of the rest :)

0
source share

All Articles