New.ToggleSwitch 1.1.0

dotnet add package New.ToggleSwitch --version 1.1.0
                    
NuGet\Install-Package New.ToggleSwitch -Version 1.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="New.ToggleSwitch" Version="1.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="New.ToggleSwitch" Version="1.1.0" />
                    
Directory.Packages.props
<PackageReference Include="New.ToggleSwitch" />
                    
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 New.ToggleSwitch --version 1.1.0
                    
#r "nuget: New.ToggleSwitch, 1.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 New.ToggleSwitch@1.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=New.ToggleSwitch&version=1.1.0
                    
Install as a Cake Addin
#tool nuget:?package=New.ToggleSwitch&version=1.1.0
                    
Install as a Cake Tool

New.ToggleSwitch Control (.NET Framework 4.8)

New.ToggleSwitch é um botão seletor do tipo On/Off personalizável para aplicações Windows Forms (.NET Framework).
Ideal para substituir CheckBox com um visual mais moderno e profissional, baseado no novo layout do Windows.


🔧 Características

  • ✅ Estilo moderno com cantos arredondados
  • 🎨 Personalização completa de cores
  • 🔁 Alternância suave entre estados ON/OFF
  • ⚙️ Comportamento herdado de CheckBox
  • 🖥️ Fácil de usar no Visual Studio

📦 Instalação

Via NuGet

Você pode instalar usando o Package Manager Console:

Install-Package New.ToggleSwitch

Ou pela .NET CLI:

dotnet add package New.ToggleSwitch

🚀 Como Usar

Adicione o controle programaticamente:

using ToggleSwitch;

var toggle = new ToggleSwitch
{
    OnBackColor = Color.MediumSlateBlue,
    OnToggleColor = Color.WhiteSmoke,
    OffBackColor = Color.Gray,
    OffToggleColor = Color.Gainsboro,
    SolidStyle = true,
    Location = new Point(30, 30)
};

this.Add(toggle);

🧪 Exemplo de Evento

toggle.CheckedChanged += (s, e) =>
{
    if (toggle.Checked)
        MessageBox.Show("Ligado!");
    else
        MessageBox.Show("Desligado!");
};

⚙️ Propriedades Disponíveis

Propriedade Tipo Descrição
OnBackColor Color Cor de fundo quando o botão está ativado
OnToggleColor Color Cor do botão quando está ativado
OffBackColor Color Cor de fundo quando o botão está desativado
OffToggleColor Color Cor do botão quando está desativado
SolidStyle bool Define se o botão é sólido ou apenas contorno

🖼️ Captura de Tela

Preview do ToggleButton


🖥️ Requisitos

  • .NET Framework 4.5 ou superior
  • Aplicações Windows Forms

📃 Licença

Distribuído sob a licença MIT.


🤝 Contribuindo

Contribuições são bem-vindas!
Sinta-se à vontade para abrir issues ou enviar pull requests.


🙋‍♂️ Autor

Criado por @sandrolsa Dúvidas ou sugestões: sandrolsa@gmail.com Projeto para uso pessoal, use e adapte como quiser.

Product Compatible and additional computed target framework versions.
.NET Framework net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.8

    • 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
1.1.0 159 5/28/2025