EasyWinFormLibrary 1.0.7

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

EasyWinFormLibrary

Easy Windows Form library to simplify development: includes custom controls, SQL Server helpers, and useful extensions.

Features

  • Custom Controls: Modern, customizable Windows Forms controls
  • SQL Server Helpers: Simplified database operations and connection management
  • Useful Extensions: Extension methods for common WinForms tasks
  • Built-in Logging: Integrated Sentry and Serilog support

Installation

Install via NuGet Package Manager:

Install-Package EasyWinFormLibrary

Or via .NET CLI:

dotnet add package EasyWinFormLibrary

Quick Start

using EasyWinFormLibrary;
using EasyWinFormLibrary.CustomControls;

// Use custom controls
var advancedButton = new AdvancedButton();
var advancedTextBox = new AdvancedTextBox();

// Use SQL helpers
var connectionConfig = new SqlDatabaseConnectionConfig
{
    Server = "your-server",
    Database = "your-database"
};

var dbActions = new SqlDatabaseActions(connectionConfig);

Requirements

  • .NET Framework 4.8
  • Windows Forms Application

Documentation

For detailed documentation and examples, visit our GitHub repository.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Support

For issues and feature requests, please visit our GitHub Issues page.

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.

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.0.7 116 7/31/2025
1.0.3 111 7/31/2025
1.0.2 113 7/31/2025
1.0.1 115 7/31/2025
1.0.0 117 7/30/2025

Fixed XML documentation visibility and packaging issues.