Back to Devexpress

ReportDesigner.UseOfficeInspiredRibbonStyle Property

wpf-devexpress-dot-xpf-dot-reports-dot-userdesigner-dot-reportdesigner.md

latest2.3 KB
Original Source

ReportDesigner.UseOfficeInspiredRibbonStyle Property

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

Declaration

csharp
public bool UseOfficeInspiredRibbonStyle { get; set; }
vb
Public Property UseOfficeInspiredRibbonStyle As Boolean

Property Value

TypeDescription
Boolean

true, to make the Report Designer use an MS Office-inspired Ribbon; false , to use the previous Ribbon version.

|

Remarks

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.

xaml
<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

ReportDesigner Class

ReportDesigner Members

DevExpress.Xpf.Reports.UserDesigner Namespace