ReportDesigner Class
A control used to create an End-User Report Designer under the WPF platform.
Namespace: DevExpress.Xpf.Reports.UserDesigner
Assembly: DevExpress.Xpf.ReportDesigner.v26.1.dll
Declaration
Related API Members
The following members return ReportDesigner objects:
Remarks
Important
To use the ReportDesigner control in a WPF application, you need a subscription that includes DevExpress WPF UI Controls: WPF, DXperience, or Universal. With the DevExpress Reporting Subscription, you can only use the ReportDesigner.ShowWindow method to display the End-User Report Designer in WPF Applications.
The ReportDesigner allows you to incorporate an End-User Report Designer directly within your WPF application.

The following code sample generates an End-User Report Designer:
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:dxrud="http://schemas.devexpress.com/winfx/2008/xaml/reports/userdesigner" x:Class="TestDesigner.MainWindow"
Title="MainWindow" Height="350" Width="525">
<dxrud:ReportDesigner HorizontalAlignment="Left" Margin="20,10,0,0" VerticalAlignment="Top"/>
</Window>
See the following help topic for detailed instructions: Quick Start with an End-User Report Designer.
You can also customize an End-User Report Designer in various ways: modify context menus, smart tags, dock panels and much more. See the following article for details: API and Customization.
Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the ReportDesigner class.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.