DevExpress.Wpf.Docking 26.1.5

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

DevExpress WPF Docking

DevExpress.Wpf.Docking includes the DevExpress WPF Dock Windows library. DockLayoutManager builds a Visual Studio-inspired layout. Resizable dock panels can float, dock to a container's edges, create tabbed interfaces, and switch between pinned and auto-hide modes. You can persist layout customizations between application runs.

dotnet add package DevExpress.Wpf.Docking

Key Features

  • Dock, Float, and Tab: Users can rearrange panels using drag-and-drop operations. Dock hints display available drop targets.
  • Auto-Hide: Collapse a panel to a tray tab that expands on hover or click.
  • Document Management: Host documents in a DocumentGroup with tabbed or MDI presentation.
  • Layout Persistence: Save the layout to a stream, file, or isolated storage.
  • MVVM Support: Generate panels from a view model collection and serialize the resulting layout.
  • Cross-Manager Drag-and-Drop: Move panels between two DockLayoutManager instances.

Examples

Build a Dock Window Layout

<Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:dxdo="http://schemas.devexpress.com/winfx/2008/xaml/docking">

    <dxdo:DockLayoutManager>
        <dxdo:LayoutGroup Orientation="Horizontal">
            
            <dxdo:LayoutPanel Caption="Solution Explorer" ItemWidth="2*" />

            
            <dxdo:DocumentGroup ItemWidth="5*">
                <dxdo:DocumentPanel Caption="Document 1" />
                <dxdo:DocumentPanel Caption="Document 2" />
            </dxdo:DocumentGroup>
        </dxdo:LayoutGroup>
    </dxdo:DockLayoutManager>
</Window>

In this configuration, the layout behaves as follows:

  • Places a dock panel and a document area side by side
  • Splits the width between them at a 2:5 ratio
  • Allows the dock panel to float, dock, or use auto-hide mode

NOTE: DevExpress.Xpf.Docking.LayoutGroup is not the same type as DevExpress.Xpf.LayoutControl.LayoutGroup from the DevExpress.Wpf.LayoutControl package. Reference the namespace that matches the control you use.

Evaluation Period, Pricing Options, and Licensing Terms

Whether you own a license or want to start a 30-day evaluation period, download and register your DevExpress license key. To obtain your key, log in to the DevExpress Download Manager. Use your existing DevExpress.com account or create a new account for free. For key registration instructions, see License Key for DevExpress Products.

If you purchase a license after evaluating a product, re-register your updated DevExpress license key to remove evaluation version warnings/messages.

This package is included in the following commercial subscriptions:

See DevExpress Subscriptions & Licensing for subscription comparison tables, purchasing FAQ, and licensing information.

DevExpress.Wpf.LayoutControl - DevExpress WPF Layout containers.

dotnet add package DevExpress.Wpf.LayoutControl

DevExpress.Wpf.Ribbon - The DevExpress WPF Ribbon control.

dotnet add package DevExpress.Wpf.Ribbon

DevExpress.Wpf - The complete DevExpress WPF Control suite.

dotnet add package DevExpress.Wpf

Demos

NOTE: Demo links below only work if you already have DevExpress WPF Demos installed on your machine. To install demos, download and run the DevExpress Unified Installer (evaluation or licensed version). Remember to select "Demo Applications" on the product selection screen.

Documentation

Software Bill of Materials (SBOM)

To access SBOM files for DevExpress packages, please refer to the following article: Software Bill of Materials (SBOM) for DevExpress .NET assemblies/NuGet packages, JavaScript, VCL and other redistributable artifacts.

See Also: Information Security | Security - What You Need to Know

Useful Online Resources

Product Compatible and additional computed target framework versions.
.NET net8.0-windows is compatible.  net9.0-windows was computed.  net10.0-windows was computed. 
.NET Framework net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (18)

Showing the top 5 NuGet packages that depend on DevExpress.Wpf.Docking:

Package Downloads
DevExpress.Wpf.RichEdit

Target Platform/Framework: Desktop DevExpress Product Libraries Used: WPF UI components (https://www.devexpress.com/wpf) Available in the following DevExpress Subscription(s): Universal, DXperience, WPF, Reporting

DevExpress.Wpf.Printing

Target Platform/Framework: Desktop DevExpress Product Libraries Used: WPF UI components (https://www.devexpress.com/wpf) Available in the following DevExpress Subscription(s): Universal, DXperience, WPF, Reporting

DevExpress.Wpf.Charts

Target Platform/Framework: Desktop DevExpress Product Libraries Used: WPF UI components (https://www.devexpress.com/wpf) Available in the following DevExpress Subscription(s): Universal, DXperience, WPF, Reporting

DevExpress.Wpf.Spreadsheet

Target Platform/Framework: Desktop DevExpress Product Libraries Used: WPF UI components (https://www.devexpress.com/wpf) Available in the following DevExpress Subscription(s): Universal, DXperience, WPF

DevExpress.Wpf.Diagram

Target Platform/Framework: Desktop DevExpress Product Libraries Used: WPF UI components (https://www.devexpress.com/wpf) Available in the following DevExpress Subscription(s): Universal, DXperience, WPF, Reporting

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
26.1.5 6 9/18/2026
26.1.5-pre-26248 563 9/11/2026
26.1.5-pre-26241 572 9/2/2026
26.1.5-pre-26235 592 8/26/2026
26.1.5-pre-26227 660 8/18/2026
26.1.4 24,363 8/7/2026
26.1.3 33,903 6/18/2026
25.2.9 3,808 8/3/2026
25.2.8 12,049 6/10/2026
25.2.7 24,068 5/6/2026
25.2.6 23,305 4/7/2026
25.1.13 927 7/31/2026
25.1.12 897 6/10/2026
25.1.11 1,589 5/5/2026
25.1.10 7,495 4/6/2026
25.1.9 1,509 3/2/2026
Loading failed