SplashScreenGdipAot 1.0.1
See the version list below for details.
dotnet add package SplashScreenGdipAot --version 1.0.1
NuGet\Install-Package SplashScreenGdipAot -Version 1.0.1
<PackageReference Include="SplashScreenGdipAot" Version="1.0.1" />
paket add SplashScreenGdipAot --version 1.0.1
#r "nuget: SplashScreenGdipAot, 1.0.1"
// Install SplashScreenGdipAot as a Cake Addin #addin nuget:?package=SplashScreenGdipAot&version=1.0.1 // Install SplashScreenGdipAot as a Cake Tool #tool nuget:?package=SplashScreenGdipAot&version=1.0.1
// 1. Setup splash image by relative path var splash = new SplashScreenGdipAot.SplashScreen(96, 96, "klee.png"); splash.Run(5000);
// 2. Or setup splash image by embedded resource // like <EmbeddedResource Include="klee.png" /> in your .csproj file var stream = Assembly.GetExecutingAssembly().GetManifestResourceStream("ConsoleApp1.klee.png") ?? throw new ArgumentNullException("stream"); var splash = new SplashScreenGdipAot.SplashScreen(96, stream);
// Infinite run splash.Run();
// Recommand run splash in task Task.Run(() ⇒ splash.Run());
// Close splash manully splash.Close();
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0-windows7.0 is compatible. net8.0-windows was computed. net9.0-windows was computed. |
-
net7.0-windows7.0
- 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.