Tabalonia 0.12.0

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

Tabalonia

Nuget

Draggable tab items on Avalonia here!

This is a port of the Draggablz

example

Getting Started

Install the library as a NuGet package:

Install-Package Tabalonia
# Or 'dotnet add package Tabalonia'

Add the following to your App.axaml:

...
xmlns:themes="clr-namespace:Tabalonia.Themes.Custom;assembly=Tabalonia"
...
    <Application.Styles>
        ...
        <themes:FluentTheme/>
    </Application.Styles>
...

Done! Use TabsControl like:

...
xmlns:controls="clr-namespace:Tabalonia.Controls;assembly=Tabalonia"
...
<controls:TabsControl ItemsSource="{Binding TabItems}"
                      NewItemFactory="{Binding NewItemFactory}"
                      FixedHeaderCount="1">
    <TabControl.ContentTemplate>
        <DataTemplate DataType="{x:Type dragablzDemo:TabItemViewModel}">
            <Grid Background="{DynamicResource SelectedTabItemBackgroundBrush}">
                <TextBlock  Text="{Binding SimpleContent}"
                            HorizontalAlignment="Center"
                            VerticalAlignment="Center"/>
            </Grid>
        </DataTemplate>
    </TabControl.ContentTemplate>
    <TabControl.ItemTemplate>
        <DataTemplate DataType="{x:Type dragablzDemo:TabItemViewModel}">
            <TextBlock Text="{Binding Header}" />
        </DataTemplate>
    </TabControl.ItemTemplate>
</controls:TabsControl>
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 Tabalonia:

Package Downloads
Semi.Avalonia.Tabalonia

Tabalonia Theme inspired by Semi Design.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.12.0 218 5/10/2026
0.10.7 4,079 7/21/2025
0.10.6 1,302 4/14/2025
0.10.5 347 3/14/2025
0.10.4 2,700 8/4/2024
0.10.3 1,888 11/25/2023
0.10.1 246 11/20/2023
0.9.12 334 10/30/2023
0.9.11 251 10/30/2023
0.9.10 294 9/16/2023
0.9.9 316 9/9/2023
0.9.8 564 8/25/2023
0.9.6 298 8/20/2023
0.9.5 318 8/19/2023
0.9.4 307 8/8/2023
0.9.3 294 7/29/2023
0.9.2 292 7/29/2023
Loading failed

Supported a light mode for the custom theme