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

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).

UnoDock on macOS

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:

  • NuGet The core docking manager component.
  • NuGet VS2013 theme.
  • NuGet VS2010 theme.

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 (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 Compatible and additional computed target framework versions.
.NET net10.0-desktop1.0 is compatible.  net10.0-windows10.0.19041 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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