Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.2.dll

NuGet Package: DevExpress.Wpf.Reporting

#Declaration

public class ReportDesigner :
    ReportDesignerBase,
    ICommandScopeAnalyzer

The following members return ReportDesigner objects:

#Remarks

The ReportDesigner allows you to incorporate an End-User Report Designer directly within your WPF application.

WPF End-User Report Designer

The following code sample generates an End-User Report Designer:

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

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.

#Implements

See Also