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

Bind to a Selected Item

Updated on Sep 24, 2025

RadTreeView exposes SelectedItem property, which is a DependencyProperty and can be used in a data binding.

XAML
	<telerik:RadTreeView SelectedItem="{Binding SelectedItem, Mode=TwoWay}"/>

If you want to bind to the RadTreeViewItem's IsSelected property when your treeview is data bound to an object, then you need to use an ItemContainerStyle.

XAML
	<telerik:RadTreeView>
	    <telerik:RadTreeView.ItemContainerStyle>
	        <Style TargetType="telerik:RadTreeViewItem">
	            <Setter Property="IsSelected" Value="{Binding Path=Select, Mode=TwoWay}" />
	        </Style >
	    </telerik:RadTreeView.ItemContainerStyle>
	</telerik:RadTreeView>

When using NoXaml dlls, the Style set to the ItemContainerStyle property should have its BasedOn property set to {StaticResource RadTreeViewItemStyle}.

See Also

In this article
See Also
Not finding the help you need?
Contact Support