SimpleSkin 3.1.0
dotnet add package SimpleSkin --version 3.1.0
NuGet\Install-Package SimpleSkin -Version 3.1.0
<PackageReference Include="SimpleSkin" Version="3.1.0" />
<PackageVersion Include="SimpleSkin" Version="3.1.0" />
<PackageReference Include="SimpleSkin" />
paket add SimpleSkin --version 3.1.0
#r "nuget: SimpleSkin, 3.1.0"
#:package SimpleSkin@3.1.0
#addin nuget:?package=SimpleSkin&version=3.1.0
#tool nuget:?package=SimpleSkin&version=3.1.0
SimpleSkin
SimpleSkin is a lightweight class library that allows you to quickly and easily add custom skins to your Windows Forms application. With SimpleSkin, you can give your application a fresh and unique look without needing to spend hours modifying the appearance of individual controls.
Requirements .NET Framework 4.7.1 or higher Windows Forms application
Getting Started To use SimpleSkin, simply add the SimpleSkin.dll library to your project references.
To apply a skin to your Windows Forms application:
Create an instance of the SimpleSkin class and pass in the path to your application's .exe file. csharp Copy code private void MainForm_Load(object sender, EventArgs e) { ApplySkin(); } private void ApplySkin() { var simpleSkin = SimpleSkin.SimpleSkin.Create(x ⇒ { x.Skin = Skin.Dark; //Provide control name seperated by comma for exclusion x.ControlExcludes = "ComboBox"; });
simpleSkin.ApplyAll(this);
}
That's it! Your application should now have a new look and feel based on the selected skin.
Supported Skins SimpleSkin currently supports the following skins:
Dark
Feedback and Support If you encounter any issues while using SimpleSkin, or if you have any suggestions for new features or improvements, please open an issue on the GitHub repository.
Thank you for using SimpleSkin!
Regenerate response
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net471 is compatible. net472 was computed. net48 was computed. net481 was computed. |
-
.NETFramework 4.7.1
- 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.1.0 | 343 | 3/24/2023 |
2.1.0 | 280 | 3/24/2023 |
2.0.0 | 303 | 3/24/2023 |
1.1.0-preview | 182 | 3/24/2023 |
1.0.0 | 305 | 3/24/2023 |
Initial Commit