Go to file
at ss 5ed0e2d90e [Add](Ver1.1.0)Versionを表示できるようにした 2023-01-07 05:26:24 +09:00
SplashScreen.WindowsForms [Add](Ver1.1.0)Versionを表示できるようにした 2023-01-07 05:26:24 +09:00
.gitattributes プロジェクト ファイルを追加します。 2022-02-14 21:53:58 +09:00
.gitignore プロジェクト ファイルを追加します。 2022-02-14 21:53:58 +09:00
README.md [Add](Ver1.1.0)Versionを表示できるようにした 2023-01-07 05:26:24 +09:00
SplashScreen.WindowsForms.sln プロジェクト ファイルを追加します。 2022-02-14 21:53:58 +09:00

README.md

SplashScreen.WindowsForms

Nuget downloads NuGet
Library to display splash screen in Winforms.

TargetFrameworks:.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();
}