wpf-devexpress-dot-xpf-dot-reports-dot-userdesigner-dot-reportdesigner.md
Specifies whether the End-User Report Designer uses an MS Office-inspired Ribbon toolbar.
Namespace : DevExpress.Xpf.Reports.UserDesigner
Assembly : DevExpress.Xpf.ReportDesigner.v25.2.dll
NuGet Package : DevExpress.Wpf.Reporting
public bool UseOfficeInspiredRibbonStyle { get; set; }
Public Property UseOfficeInspiredRibbonStyle As Boolean
| Type | Description |
|---|---|
| Boolean |
true, to make the Report Designer use an MS Office-inspired Ribbon; false , to use the previous Ribbon version.
|
By default, the End-User Report Designer uses an MS Office-inspired Ribbon structure. It contains core Ribbon tabs called Home , Layout , Page and View for general commands as well as contextual tabs that offer commands relating to currently selected report controls.
To make the Report Designer use the previous Ribbon version, set the UseOfficeInspiredRibbonStyle property to false as shown below.
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:dxrud="http://schemas.devexpress.com/winfx/2008/xaml/reports/userdesigner"
...
<dxrud:ReportDesigner x:Name="reportDesigner" UseOfficeInspiredRibbonStyle="False"/>
</Window>
See Also