SimpleSkin 3.1.0

dotnet add package SimpleSkin --version 3.1.0
                    
NuGet\Install-Package SimpleSkin -Version 3.1.0
                    
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="SimpleSkin" Version="3.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="SimpleSkin" Version="3.1.0" />
                    
Directory.Packages.props
<PackageReference Include="SimpleSkin" />
                    
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 SimpleSkin --version 3.1.0
                    
#r "nuget: SimpleSkin, 3.1.0"
                    
#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.
#:package SimpleSkin@3.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=SimpleSkin&version=3.1.0
                    
Install as a Cake Addin
#tool nuget:?package=SimpleSkin&version=3.1.0
                    
Install as a Cake Tool

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 Compatible and additional computed target framework versions.
.NET Framework net471 is compatible.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .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