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" />
<PackageReference Include="EasyWinFormLibrary" />
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
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#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
#tool nuget:?package=EasyWinFormLibrary&version=1.0.7
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | Versions 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
- Microsoft.Bcl.AsyncInterfaces (>= 6.0.0)
- Microsoft.SqlServer.Server (>= 1.0.0)
- Sentry (>= 5.13.0)
- Sentry.Serilog (>= 5.13.0)
- Serilog (>= 4.3.0)
- System.Buffers (>= 4.5.1)
- System.Collections.Immutable (>= 9.0.7)
- System.Diagnostics.DiagnosticSource (>= 8.0.1)
- System.Memory (>= 4.5.5)
- System.Numerics.Vectors (>= 4.5.0)
- System.Reflection.Metadata (>= 9.0.7)
- System.Runtime.CompilerServices.Unsafe (>= 6.0.0)
- System.Runtime.InteropServices.RuntimeInformation (>= 4.3.0)
- System.Text.Encodings.Web (>= 6.0.0)
- System.Text.Json (>= 6.0.10)
- System.Threading.Channels (>= 8.0.0)
- System.Threading.Tasks.Extensions (>= 4.5.4)
- System.ValueTuple (>= 4.5.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Fixed XML documentation visibility and packaging issues.