Dataescher.Windows.Controls.GridControl 1.0.0

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Dataescher.Windows.Controls.GridControl --version 1.0.0
                    
NuGet\Install-Package Dataescher.Windows.Controls.GridControl -Version 1.0.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="Dataescher.Windows.Controls.GridControl" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Dataescher.Windows.Controls.GridControl" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Dataescher.Windows.Controls.GridControl" />
                    
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 Dataescher.Windows.Controls.GridControl --version 1.0.0
                    
#r "nuget: Dataescher.Windows.Controls.GridControl, 1.0.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 Dataescher.Windows.Controls.GridControl@1.0.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=Dataescher.Windows.Controls.GridControl&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Dataescher.Windows.Controls.GridControl&version=1.0.0
                    
Install as a Cake Tool

Dataescher.Windows.Controls.GridControl

A powerful and feature-rich Windows Forms grid control for displaying and editing tabular data in .NET applications.

Features

  • Data Display & Editing: Efficient display of large datasets with in-place cell editing (text, checkboxes, dropdowns)
  • Sorting & Grouping: Multi-column sorting with automatic and custom grouping
  • Advanced Layout: Frozen rows/columns, merged cells, tree view, and hierarchical data display
  • Customization: Per-cell, per-row, and per-column styling with fonts, colors, and images
  • Auto-sizing: Automatic column width and row height calculation
  • Selection Modes: Single, multi-simple, and multi-extended selection
  • Touch Support: Touch-friendly interface for modern devices
  • Search-as-you-type: Built-in filtering functionality

Quick Start

using Dataescher.Windows.Controls.GridControl;

// Create a grid control
Grid grid = new Grid();
grid.Dock = DockStyle.Fill;

// Add columns
grid.Cols.Add("Name", "Name", 150);
grid.Cols.Add("Age", "Age", 80);
grid.Cols.Add("Email", "Email", 200);

// Add rows
grid.Rows.Add();
grid.Cells[0, 0].Value = "John Doe";
grid.Cells[0, 1].Value = 30;
grid.Cells[0, 2].Value = "john@example.com";

grid.Rows.Add();
grid.Cells[1, 0].Value = "Jane Smith";
grid.Cells[1, 1].Value = 25;
grid.Cells[1, 2].Value = "jane@example.com";

// Add to form
this.Controls.Add(grid);

Target Frameworks

  • .NET Framework 4.8
  • .NET 8.0 (Windows)
  • .NET 9.0 (Windows)
  • .NET 10.0 (Windows)

Documentation

For detailed API documentation, examples, and advanced features, please visit:

License

This project is licensed under the MIT License.

© Dataescher, 2024-2026

Product Compatible and additional computed target framework versions.
.NET net8.0-windows7.0 is compatible.  net9.0-windows was computed.  net9.0-windows7.0 is compatible.  net10.0-windows was computed.  net10.0-windows7.0 is compatible. 
.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