LeXtudio.UnoDock
0.2.0
Prefix Reserved
dotnet add package LeXtudio.UnoDock --version 0.2.0
NuGet\Install-Package LeXtudio.UnoDock -Version 0.2.0
<PackageReference Include="LeXtudio.UnoDock" Version="0.2.0" />
<PackageVersion Include="LeXtudio.UnoDock" Version="0.2.0" />
<PackageReference Include="LeXtudio.UnoDock" />
paket add LeXtudio.UnoDock --version 0.2.0
#r "nuget: LeXtudio.UnoDock, 0.2.0"
#:package LeXtudio.UnoDock@0.2.0
#addin nuget:?package=LeXtudio.UnoDock&version=0.2.0
#tool nuget:?package=LeXtudio.UnoDock&version=0.2.0
UnoDock
UnoDock is a desktop-first port of AvalonDock to Uno Platform and WinUI 3.
Current scope:
- Target Uno Skia Desktop on Windows and macOS.
- Target WinUI 3 on Windows.
- Do not target Linux yet
- Do not target mobile during the bootstrap phase (v0.x.x).

Supported Platforms
- Windows 11 (Windows 10 may work but is not a primary target). WinUI 3 is supported by not a primary target.
- macOS, 3 most recent versions from 2023-2025
Linux support is planned later.
If you are looking for support of a specific platform, business sponsorship is the way to accelerate that work. Please reach out to us at homepage.
Get Started
Several NuGet packages are available:
Default usage
Install the core package and one theme package:
dotnet add package LeXtudio.UnoDock
dotnet add package LeXtudio.UnoDock.Themes.VS2013
Load the theme resources before the window XAML is initialized. This makes the
UnoDock_VS2013_* brushes available to the docking manager and to any surrounding
UI that wants to match the same palette.
using Microsoft.UI.Xaml;
using UnoDock.Themes.VS2013;
public sealed partial class MainWindow : Window
{
public MainWindow()
{
Application.Current.Resources.MergedDictionaries.Add(
new Vs2013LightTheme().ThemeResourceDictionary);
InitializeComponent();
}
}
Then declare a DockingManager and provide an initial layout. UnoDock follows the
AvalonDock model names, so documents live in LayoutDocumentPane and dockable
tool windows live in LayoutAnchorablePane.
<Window
x:Class="MyApp.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:dock="using:AvalonDock"
xmlns:dockLayout="using:AvalonDock.Layout"
xmlns:dockThemes="using:UnoDock.Themes.VS2013">
<dock:DockingManager x:Name="DockManager">
<dock:DockingManager.Theme>
<dockThemes:Vs2013LightTheme />
</dock:DockingManager.Theme>
<dock:DockingManager.Layout>
<dockLayout:LayoutRoot>
<dockLayout:LayoutPanel Orientation="Horizontal">
<dockLayout:LayoutAnchorablePane DockWidth="240">
<dockLayout:LayoutAnchorable Title="Solution Explorer"
ContentId="solution-explorer">
<TextBlock Margin="8" Text="Project tree goes here" />
</dockLayout:LayoutAnchorable>
</dockLayout:LayoutAnchorablePane>
<dockLayout:LayoutDocumentPane>
<dockLayout:LayoutDocument Title="Document.md"
ContentId="document-md">
<TextBox AcceptsReturn="True"
TextWrapping="Wrap"
Text="Document content goes here" />
</dockLayout:LayoutDocument>
</dockLayout:LayoutDocumentPane>
<dockLayout:LayoutAnchorablePane DockWidth="220">
<dockLayout:LayoutAnchorable Title="Properties"
ContentId="properties">
<TextBlock Margin="8" Text="Selected item properties" />
</dockLayout:LayoutAnchorable>
</dockLayout:LayoutAnchorablePane>
</dockLayout:LayoutPanel>
</dockLayout:LayoutRoot>
</dock:DockingManager.Layout>
</dock:DockingManager>
</Window>
Use stable ContentId values for every document and tool pane. They are used by
layout persistence and make it possible to restore panes back to the right
application content later.
Study the sample project for layout save/load, floating window diagnostics, and a fuller Visual Studio-style shell.
Current Status
Early preview (v0.x.y) releases are available on NuGet.
The API is not yet stable and may change without a major version bump. Feedback is welcome to help shape the future of UnoDock.
TODO Items Before v1.0.0
- More themes
- Logical tree improvements
- Accessibility support (screen readers, keyboard navigation, etc.)
License
UnoDock is licensed under the Microsoft Public License (Ms-PL). See LICENSE for details.
Copyright
Copyright (c) 2026 LeXtudio Inc. All rights reserved.
Credits & Third-Party
UnoDock builds on and includes code from the AvalonDock project.
AvalonDock is licensed under the Microsoft Public License (Ms-PL). See externals/AvalonDock/LICENSE and
THIRD_PARTY_NOTICES.md for attribution and full license text. The NuGet packages
produced by this repository also include the third-party license text and notices.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0-desktop1.0 is compatible. net10.0-windows10.0.19041 is compatible. |
-
net10.0-desktop1.0
- Dirkster.AvalonDock.Core (>= 5.0.0-preview.87)
- Dirkster.AvalonDock.Serializer.Xml (>= 5.0.0-preview.87)
- LeXtudio.Windows (>= 0.10.0)
- SkiaSharp.Views.Uno.WinUI (>= 3.119.2)
- Uno.WinUI (>= 6.6.184)
- Uno.WinUI.Graphics2DSK (>= 6.6.184)
- Uno.WinUI.Lottie (>= 6.6.184)
-
net10.0-windows10.0.19041
- Dirkster.AvalonDock.Core (>= 5.0.0-preview.87)
- Dirkster.AvalonDock.Serializer.Xml (>= 5.0.0-preview.87)
- LeXtudio.Windows (>= 0.10.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on LeXtudio.UnoDock:
| Package | Downloads |
|---|---|
|
LeXtudio.UnoDock.Themes.VS2013
Visual Studio 2013 themes for LeXtudio.UnoDock. |
|
|
LeXtudio.UnoDock.Themes.VS2010
Visual Studio 2010 theme for LeXtudio.UnoDock. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.2.0 | 79 | 8/6/2026 |
| 0.1.13 | 72 | 7/30/2026 |
| 0.1.12 | 78 | 7/1/2026 |
| 0.1.11 | 86 | 6/30/2026 |
| 0.1.10 | 103 | 6/23/2026 |
| 0.1.9 | 136 | 6/23/2026 |
| 0.1.8 | 120 | 6/22/2026 |
| 0.1.7 | 125 | 6/22/2026 |
| 0.1.6 | 118 | 6/20/2026 |
| 0.1.5 | 122 | 6/19/2026 |
| 0.1.4 | 123 | 6/17/2026 |
| 0.1.3 | 127 | 6/10/2026 |
| 0.1.2 | 126 | 6/10/2026 |
| 0.1.1 | 117 | 6/9/2026 |
| 0.1.0 | 124 | 6/6/2026 |