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

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"/> 
WinUI

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> 
WinUI
In this article
Not finding the help you need?