Telerik RadRibbonBar provides a simple and consistent way for building interfaces similar to the ribbon bar used in Microsoft Office. The RadRibbonBar may consist of various elements, one of which is the Separator.
The Separator is extremely simple element and it allows you to logically separate elements in the Application Menu.
Note |
|---|
The class that represents the separator element is Telerik.Windows.Controls.Separator. |
The next example demonstrates how to add a Separator to an ApplicationMenu object.
CopyXAML
<telerik:RadRibbonBar x:Name="radRibbonBar">
<telerik:RadRibbonBar.ApplicationMenu>
<telerik:ApplicationMenu>
<telerik:RadRibbonButton Text="New" />
<telerik:RadRibbonButton Text="Open" />
<telerik:Separator />
<telerik:RadRibbonButton Text="Save" />
</telerik:ApplicationMenu>
</telerik:RadRibbonBar.ApplicationMenu>
</telerik:RadRibbonBar>
See Also