DevExpress.Wpf.PrismAdapters 26.1.5

Prefix Reserved
dotnet add package DevExpress.Wpf.PrismAdapters --version 26.1.5
                    
NuGet\Install-Package DevExpress.Wpf.PrismAdapters -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.PrismAdapters" 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.PrismAdapters" Version="26.1.5" />
                    
Directory.Packages.props
<PackageReference Include="DevExpress.Wpf.PrismAdapters" />
                    
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.PrismAdapters --version 26.1.5
                    
#r "nuget: DevExpress.Wpf.PrismAdapters, 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.PrismAdapters@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.PrismAdapters&version=26.1.5
                    
Install as a Cake Addin
#tool nuget:?package=DevExpress.Wpf.PrismAdapters&version=26.1.5
                    
Install as a Cake Tool

DevExpress WPF: Prism Adapters

DevExpress.Wpf.PrismAdapters connects the Prism application framework to DevExpress WPF container controls. This package implements region adapters that allow Prism to work with the DevExpress Dock Layout Manager, tab control, and navigation controls (in addition to standard WPF controls). You can use Prism's modularity and view injection capabilities together with DevExpress WPF docking and navigation UI.

dotnet add package DevExpress.Wpf.PrismAdapters

Key Features

  • Region adapters for DevExpress containersDXTabControl, DocumentGroup, LayoutGroup, LayoutPanel, TabbedGroup, NavBarControl, NavBarGroup, NavigationFrame, and any ContentControl descendant.
  • DXRegionManager: Declares region names for DevExpress UI control elements, such as NavBarGroup, where the standard Prism RegionManager.RegionName attached property cannot be used.
  • Multi-version Prism support: Adapters are available for Prism versions 5, 6, 7, 8, and 9.
  • AdapterFactory: Creates adapter instances when you register DevExpress adapters in your bootstrapper or container.
  • Delayed region creation: Delays region registration until the host control is ready to avoid initialization-order issues at startup.

Examples

Example 1: Declare a Prism Region in a DevExpress Container

DevExpress Docking components in this example require the DevExpress.Wpf.Docking package.

<UserControl
    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"
    xmlns:dxprism="http://schemas.devexpress.com/winfx/2008/xaml/prism">

    <dxdo:DockLayoutManager>
        <dxdo:LayoutGroup>
            
            <dxdo:LayoutPanel Caption="Main"
                              dxprism:DXRegionManager.RegionName="MainRegion" />
        </dxdo:LayoutGroup>
    </dxdo:DockLayoutManager>
</UserControl>

Prism can now inject views into MainRegion, and they appear inside the docking panel.

Example 2: Pin the Prism Version Explicitly

using DevExpress.Xpf.Prism;

public partial class App : PrismApplication {
    protected override void OnStartup(StartupEventArgs e) {
        // Skips version auto-detection and selects the Prism 9 adapters.
        DXRegionManager.PrismVersion = PrismVersion.Prism9;
        base.OnStartup(e);
    }
}

This example explicitly activates adapters for Prism 9. Specifying the version directly allows the framework to skip automatic version detection (assembly inspection) at startup.

Example 3: Register the Region Adapter for a DevExpress Control

Map a DevExpress control to its region adapter in a Prism application. AdapterFactory.Make() builds the adapter for the chosen control. For Prism 5 and 6, override ConfigureRegionAdapterMappings in the bootstrapper; for Prism 7, 8, and 9, override the method in PrismApplication.

using DevExpress.Xpf.Core;
using DevExpress.Xpf.Prism;
using Prism.Regions; // Prism 6-8; for Prism 9 use Prism.Navigation.Regions

public partial class App : PrismApplication {
    protected override void ConfigureRegionAdapterMappings(RegionAdapterMappings regionAdapterMappings) {
        base.ConfigureRegionAdapterMappings(regionAdapterMappings);

        var factory = Container.Resolve<IRegionBehaviorFactory>();
        // Registers the DevExpress region adapter for DXTabControl.
        regionAdapterMappings.RegisterMapping(
            typeof(DXTabControl),
            AdapterFactory.Make<RegionAdapterBase<DXTabControl>>(factory));
    }
}

After you register the mapping, Prism can inject views into a DXTabControl region declared with dxprism:DXRegionManager.RegionName. See the Prism Adapters help topic for equivalent Unity/Autofac bootstrapper syntax used by Prism 5 and 6.

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.Docking - DevExpress WPF Dock Layout Manager, the most common host for Prism regions.

dotnet add package DevExpress.Wpf.Docking

DevExpress.Wpf.NavBar - DevExpress WPF Navigation Bar control with region adapter support.

dotnet add package DevExpress.Wpf.NavBar

DevExpress.Wpf.Core - DevExpress WPF core library and theme engine shared by all DevExpress WPF controls.

dotnet add package DevExpress.Wpf.Core

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 (4)

Showing the top 4 NuGet packages that depend on DevExpress.Wpf.PrismAdapters:

Package Downloads
DevExpress.Wpf

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.PrismAdapters.de

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.PrismAdapters.es

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.PrismAdapters.ja

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

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
26.1.5 652 9/18/2026
26.1.5-pre-26248 142 9/11/2026
26.1.5-pre-26241 166 9/2/2026
26.1.5-pre-26235 156 8/26/2026
26.1.5-pre-26227 176 8/18/2026
26.1.4 8,629 8/7/2026
26.1.3 11,174 6/18/2026
25.2.10 88 9/22/2026
25.2.9 874 8/3/2026
25.2.8 3,874 6/10/2026
25.2.7 6,949 5/6/2026
25.2.6 9,156 4/7/2026
25.1.14 62 9/22/2026
25.1.13 347 7/31/2026
25.1.12 233 6/10/2026
25.1.11 1,051 5/5/2026
Loading failed