Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

No cookies to display.

WPF

WPF DataGrid – Custom Columns

In the last tutorial AutoGenerateColumns, I have shown how DataGrid automatically shows different columns based on the data types of data.

But by using the Columns property, you can change how columns are generated and of which control.

By default, WPF provides 5 different types of custom columns shown below:

Column Type Display
DataGridCheckBoxColumn Display CheckBox
DataGridComboBoxColumn Display ComboBox
DataGridHyperlinkColumn Display hyperlink
DataGridTextColumn Display String
DataGridTemplateColumn Display custom DataTemplate

DataGridCheckBoxColumn

This column is used for display checkbox. You can set column header by using Header property.

<DataGrid x:Name="myDataGrid" AutoGenerateColumns="False">
	<DataGrid.Columns>
		<DataGridCheckBoxColumn Header="Is Male" Binding="{Binding IsMale}" />
	</DataGrid.Columns>
</DataGrid>

DataGridCheckBoxColumn

DataGridComboBoxColumn

This column is used for display ComboBox. To show list of combobox items in ComboBox, set the ItemsSource property to list. Set SelectedItemBinding property to name of property that you want to bind to.

Below is the example of DataGridComboBoxColumn:

<Window x:Class="WpfApplication7.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:sys="clr-namespace:System;assembly=mscorlib"
        xmlns:local="clr-namespace:WpfApplication7"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <Grid.Resources>
            <ObjectDataProvider x:Key="employeeTypeEnum" MethodName="GetValues" ObjectType="{x:Type sys:Enum}">
                <ObjectDataProvider.MethodParameters>
                    <x:Type Type="local:EmployeeType" />
                </ObjectDataProvider.MethodParameters>
            </ObjectDataProvider>
        </Grid.Resources>
        <DataGrid x:Name="myDataGrid" AutoGenerateColumns="False">
            <DataGrid.Columns>
                <DataGridComboBoxColumn x:Name="myComboColumn" Header="Employee Type" ItemsSource="{Binding Source={StaticResource employeeTypeEnum}}" SelectedItemBinding="{Binding Type}" />
            </DataGrid.Columns>
        </DataGrid>
    </Grid>
</Window>

DataGridComboBoxColumn

DataGridHyperlinkColumn

This column is used for display hyperlink. Set the Binding property of HyperlinkColumn to the Uri property of bounded data. Set ContentBinding property of HyperlinkColumn if you want to change text of display.

Below is the example of DataGridHyperlinkColumn:

<DataGrid x:Name="myDataGrid" AutoGenerateColumns="False">
	<DataGrid.Columns>
		<DataGridHyperlinkColumn Binding="{Binding SiteID}" ContentBinding="{Binding Name}" />
		<DataGridHyperlinkColumn Binding="{Binding SiteID}" />
	</DataGrid.Columns>
</DataGrid>

DataGridHyperlinkColumn

DataGridTextColumn

This column in used to display bounded data as simple textual data. Set the Binding property to bounded property name.

<DataGrid x:Name="myDataGrid" AutoGenerateColumns="False">
	<DataGrid.Columns>
		<DataGridTextColumn Header="ID" Binding="{Binding ID}" />
		<DataGridTextColumn Header="Name" Binding="{Binding Name}" />
	</DataGrid.Columns>
</DataGrid>

DataGridTextColumn

DataGridTemplateColumn

This column type is used to display your custom DataTemplate.

<Grid>
	<Grid.Resources>
		<DataTemplate x:Key="customDataTemplate">
			<StackPanel>
				<TextBlock Text="{Binding BirthDate, StringFormat={}{0:MMM\,yyyy}}" />
			</StackPanel>
		</DataTemplate>
	</Grid.Resources>
	<DataGrid x:Name="myDataGrid" AutoGenerateColumns="False">
		<DataGrid.Columns>
			<DataGridTemplateColumn Header="Birth Date" CellTemplate="{StaticResource customDataTemplate}">
			</DataGridTemplateColumn>
		</DataGrid.Columns>
	</DataGrid>
</Grid>

DataGridTemplateColumn