|
||
---|---|---|
SplashScreen.WindowsForms | ||
.gitattributes | ||
.gitignore | ||
README.md | ||
SplashScreen.WindowsForms.sln |
README.md
SplashScreen.WindowsForms
Library to display splash screen in Winforms.
TargetFrameworks:.NET6,.NetFramework4.8
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();
}