Skip to content

zerodev1200/SplashScreen.WindowsForms

Repository files navigation

SplashScreen.WindowsForms

Nuget downloads NuGet
Library to display splash screen in Winforms.

TargetFrameworks:.NET8,.NET6,.NetFramework4.8

SplashScreen

Install

PM> Install-Package SplashScreen.WindowsForms

Getting Started

private void MainForm_Load(object sender, EventArgs e)
{
    var splasher = new Splasher("YourApplicationName");
    //Or
    var splasher = new Splasher("YourApplicationName","v1.0.0");
    //Or
    var splasher = new Splasher(new YourSplashForm());
    
    splasher.Show();
    
    Thread.Sleep(3000); //HeavyMethod
    
    splasher.Close();
    
    //Call Activate() because the MainForm is going backwards.
    this.Activate();
}

About

Library to display splash screen in Winforms.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages