SplashLibrary 3.2.1.8

dotnet add package SplashLibrary --version 3.2.1.8
                    
NuGet\Install-Package SplashLibrary -Version 3.2.1.8
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SplashLibrary" Version="3.2.1.8" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SplashLibrary" Version="3.2.1.8" />
                    
Directory.Packages.props
<PackageReference Include="SplashLibrary" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add SplashLibrary --version 3.2.1.8
                    
#r "nuget: SplashLibrary, 3.2.1.8"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=SplashLibrary&version=3.2.1.8
                    
Install SplashLibrary as a Cake Addin
#tool nuget:?package=SplashLibrary&version=3.2.1.8
                    
Install SplashLibrary as a Cake Tool

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);
    }
There are no supported framework assets in this package.

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.

Version Downloads Last updated
3.2.1.8 235 3/26/2024
3.2.1.7 200 3/24/2024