Virtualized data workbench
ProDataGrid
The core table surface for dense, interactive application data.
Explore source ↗Capability
A production-oriented Avalonia grid with row and column virtualization, editing, sorting, filtering, grouping, selection, and extensible columns.
- 01
Rows and columns virtualize together
- 02
Built-in edit and validation pipeline
- 03
Sorting, filtering, grouping, and summaries
- 04
Fluent and Simple theme support
How it composes
From intent
to working system.
Source
Collection and hierarchical adapters expose rows without coupling business data to the control.
Columns
Text, checkbox, template, and custom columns own display and edit behavior.
Viewport
Recycling and virtualization keep dense data responsive.
Interaction
Selection, navigation, sorting, filtering, and validation compose around the viewport.
Quick start
Adopt this
capability.
Start with the primary module, then add the related packages only when the application needs those layers. Replace VERSION with the current NuGet version.
dotnet add package ProDataGrid<PackageReference Include="ProDataGrid" Version="VERSION" /><PackageVersion Include="ProDataGrid" Version="VERSION" /><DataGrid ItemsSource="{Binding Orders}" AutoGenerateColumns="False" IsReadOnly="False"> <DataGrid.Columns> <DataGridTextColumn Header="Customer" Binding="{Binding Customer}" /> <DataGridCheckBoxColumn Header="Paid" Binding="{Binding IsPaid}" /> </DataGrid.Columns></DataGrid>Modules in this capability
Use one layer.
Compose the rest.
Source of truth
Read the module beside the complete system.
The implementation, samples, issues, and release notes stay in the parent repository so module details remain connected to the product architecture.