RadControls for WPF

The purpose of this topic is to show you how to change the RadRibbonBar's Title.

The RadRibbonBar exposes a string property named Title, which should be used in such cases.

CopyXAML
<telerik:RadRibbonBar x:Name="radRibbonBar" Title="Telerik RadRibbonBar Demo">
</telerik:RadRibbonBar>
CopyC#
radRibbonBar.Title = "Telerik RadRibbonBar Demo";
CopyVB.NET
radRibbonBar.Title = "Telerik RadRibbonBar Demo"
Note

Note that the RadRibbonBar's Title is not entirely changed. Instead, your custom title string is combined with the default "My Application" string. To change the string "My Application" you have to set the RadRibbonBar.ApplciationName property to the value you want.

See Also