New to Telerik UI for WPFStart a free 30-day trial

Select Text in a ReadOnly RadGridView Cell

Updated on Sep 15, 2025

Environment

Product Version2022.2.621
ProductRadGridView for WPF

Description

How to select the cell text when the GridView column is in readonly mode.

Solution

Define a custom CellTemplate containing a read-only TextBox element.

XAML
	<telerik:GridViewDataColumn DataMemberBinding="{Binding Name}" IsReadOnly="True">
		<telerik:GridViewDataColumn.CellTemplate>
			<DataTemplate>
				<TextBox IsReadOnly="True" Text="{Binding Name}" BorderThickness="0" Background="Transparent"/>
			</DataTemplate>
		</telerik:GridViewDataColumn.CellTemplate>
	</telerik:GridViewDataColumn>
In this article
EnvironmentDescriptionSolution
Not finding the help you need?
Contact Support