New to Telerik UI for WPF? Download free 30-day trial

Hide The Title

The RadRibbonView's API allows you to hide the Title bar of your ribbon control

Rad Ribbon View How To Change The Title

In order to do this, you need to set the RadRibbonView's TitleBarVisibility property to Visibility.Collapsed.

<telerik:RadRibbonView x:Name="xRibbonView" TitleBarVisibility="Collapsed" /> 

xRibbonView.TitleBarVisibility = Visibility.Collapsed; 
xRibbonView.TitleBarVisibility = Visibility.Collapsed; 

The result is shown on the next image - the title is hidden. Rad Ribbon View How To Hide The Title

The QuckAccessToolBar will be also hidden.

See Also

In this article