TreeDataGrid Installation
February 16, 2022 ยท View on GitHub
- Add the
Avalonia.Controls.TreeDataGridNuGet package to your project - Add the
TreeDataGridtheme to yourApp.xamlfile (theStyleIncludein the following markup):
<Application xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="AvaloniaApplication.App">
<Application.Styles>
<FluentTheme/>
<StyleInclude Source="avares://Avalonia.Controls.TreeDataGrid/Themes/Fluent.axaml"/>
</Application.Styles>
</Application>