Spice86.DataGrid 0.1.2

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

Spice86.DataGrid

Spice86.DataGrid is an Avalonia DataGrid package used by Spice86.

It combines:

  • a vendored DataGrid control implementation based on the final FLOSS v11 lineage, and
  • the Semi DataGrid theme resources,

inside one assembly/package for simpler consumption.

Package summary

This package provides:

  • DataGrid and related control types (Avalonia.Controls, Avalonia.Controls.Primitives, and related namespaces),
  • DataGrid style resources in:
    • Themes/Fluent.xaml
    • Themes/Simple.xaml
  • Semi DataGrid resources:
    • DataGridSemiTheme.axaml
    • DataGrid.axaml
    • Shared.axaml
    • Light.axaml
    • Dark.axaml

Requirements

Current project configuration targets:

  • net10.0
  • Avalonia 12.0.2

Install

dotnet add package Spice86.DataGrid

Setup

Register a base DataGrid style dictionary

<Application.Styles>
  <StyleInclude Source="avares://Spice86.DataGrid/Themes/Fluent.xaml" />
  
  
</Application.Styles>

Optional: register the Semi DataGrid theme class

<Application.Styles>
  <spice86:DataGridSemiTheme xmlns:spice86="clr-namespace:Spice86.DataGrid;assembly=Spice86.DataGrid" />
</Application.Styles>

Usage example

<DataGrid ItemsSource="{Binding Rows}" AutoGenerateColumns="False">
  <DataGrid.Columns>
    <DataGridTextColumn Header="Name" Binding="{Binding Name}" />
    <DataGridTextColumn Header="Value" Binding="{Binding Value}" />
  </DataGrid.Columns>
</DataGrid>

Development / source

Source repository:

Main library project path:

  • src/Spice86.DataGrid/Avalonia.Controls.DataGrid/Avalonia.Controls.DataGrid.csproj

Build command:

dotnet build Spice86.DataGrid.slnx --configuration Release

License

MIT. See repository LICENSE.

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Spice86.DataGrid:

Package Downloads
Spice86

Reverse engineer and rewrite real mode dos programs

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Spice86.DataGrid:

Repository Stars
OpenRakis/Spice86
Reverse engineer and rewrite real mode DOS programs!
Version Downloads Last Updated
0.1.2 371 5/20/2026
0.1.1 863 5/9/2026
0.1.0 848 5/1/2026