SplashLibrary 3.2.1.8
dotnet add package SplashLibrary --version 3.2.1.8
NuGet\Install-Package SplashLibrary -Version 3.2.1.8
<PackageReference Include="SplashLibrary" Version="3.2.1.8" />
paket add SplashLibrary --version 3.2.1.8
#r "nuget: SplashLibrary, 3.2.1.8"
// Install SplashLibrary as a Cake Addin #addin nuget:?package=SplashLibrary&version=3.2.1.8 // Install SplashLibrary as a Cake Tool #tool nuget:?package=SplashLibrary&version=3.2.1.8
Splash controller for programmers,
Give you the ability to present fade-in splashes in your software. A WIN32 software for programmers using VisualStudio and .NET
Embed and run the process with the image in the command line arguments. Example Splash.exe path to cat.png
Running without any arguments will show the default image.
Or by using the library you have 3 methods exposed:
void Init(void) - Call once. void ShowDefault(void) - Show the default Splash screen Show(string PathToPNGFile) - Show your Splash image.
example: using SplashLibrary; ... ... CSplash Splash = new CSplash(); Splash.ShowDefault(); ... ... private void Show2_Click(object sender, EventArgs e) { string sImage = textBox1.Text;
CSplash Splash = new CSplash();
Splash.Show(sImage);
}
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.