Header
The CollectionEditor allows you to define a title content that is displayed on top of the control.
To show the title, set the Header
property of RadCollectionEditor
.
Setting Header to a string
<telerikControls:RadCollectionEditor Header="Employees"/>
The header also can be assigned a visual element, thus allowing more customization options.
Setting Header to a visual element
<telerikControls:RadCollectionEditor>
<telerikControls:RadCollectionEditor.Header>
<Border Padding="8">
<TextBlock Text="Employees" FontWeight="Bold" FontSize="24" Foreground="OrangeRed" />
</Border>
</telerikControls:RadCollectionEditor.Header>
</telerikControls:RadCollectionEditor>