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

Template Column

The DataGridTemplateColumn enables you to completely customize the content of the DataGrid column cells and utilizes a DataTemplate to describe the content of the associated cells.

Out of the box, the DataGridTemplateColumn supports grouping and sorting from the UI through the DataGridTemplateColumn.SortDescriptor and DataGridTemplateColumn.GroupDescriptor properties. However, the DataGridTemplateColumn does not support programmatic grouping and sorting.

Key Properties

The DataGridTemplateColumn supports the following key properties:

  • SortDescriptor (SortDescriptorBase)—Gets or sets an instance of the SortDescriptorBase class that defines how the column will be sorted by the user upon a Tap gesture over the column header.
  • GroupDescriptor (GroupDescriptorBase)—Gets or sets an instance of the GroupDescriptorBase class that defines whether and how the column can be grouped by the user using drag-and-drop operation.
  • CellContentTemplate (DataTemplate)—Gets or sets the DataTemplate instance that defines the appearance of each cell associated with this column.
  • CellContentTemplateSelector (DataTemplateSelector)—Gets or sets a DataTemplateSelector instance that may be used to retrieve dynamic data templates on a per cell basis.

Example

The following example shows how to make a RadDataGrid with a DataGridTemplateColumn.

  1. First, create the business object.

    Create the Data Model

        public class Data 
        { 
            public string Country { get; set; } 
     
            public BitmapImage Flag { get; set; } 
        } 
    
  2. The next step is to create some sample data.

    Create Sample Data

        public MainPage() 
        { 
            this.InitializeComponent(); 
     
            this.DataContext = new List<Data>() 
            { 
                new Data { Country = "Argentina", Flag = new BitmapImage(new Uri("ms-appx:///Argentina.png", UriKind.Absolute)) }, 
                new Data { Country = "Brazil", Flag = new BitmapImage(new Uri("ms-appx:///Brazil.jpg", UriKind.Absolute)) }, 
                new Data { Country = "China", Flag = new BitmapImage(new Uri("ms-appx:///China.jpg", UriKind.Absolute)) }, 
            };       
        } 
    
  3. The final step is to bind the ItemsSource property of the DataGrid and manually declare the DataGridNumericalColumn. The following shows the XAML definition. As you can see, the DataTemplate of the second DataGridTemplateColumns is an image.

    Define in XAML

        <telerikGrid:RadDataGrid x:Name="grid" Height="300" Width="300" AutoGenerateColumns="False" VerticalAlignment="Center" ItemsSource="{Binding}"> 
            <telerikGrid:RadDataGrid.Columns> 
                <telerikGrid:DataGridTemplateColumn Header="Country"> 
                    <telerikGrid:DataGridTemplateColumn.CellContentTemplate> 
                        <DataTemplate> 
                            <TextBlock Text="{Binding Country}" HorizontalAlignment="Center" VerticalAlignment="Center"/> 
                        </DataTemplate> 
                    </telerikGrid:DataGridTemplateColumn.CellContentTemplate> 
                </telerikGrid:DataGridTemplateColumn> 
     
                <telerikGrid:DataGridTemplateColumn Header="Flag"> 
                    <telerikGrid:DataGridTemplateColumn.CellContentTemplate> 
                        <DataTemplate> 
                            <StackPanel> 
                                <Image Source="{Binding Flag}" Stretch="UniformToFill" Width="100" Height="100" /> 
                            </StackPanel> 
                        </DataTemplate> 
                    </telerikGrid:DataGridTemplateColumn.CellContentTemplate> 
                </telerikGrid:DataGridTemplateColumn> 
            </telerikGrid:RadDataGrid.Columns> 
        </telerikGrid:RadDataGrid> 
    
    Template Column

WinUI DataGrid Template Column

In this article
Not finding the help you need?