0 out of 1 rated this helpful - Rate this topic

TreeView.SelectedItem Property

Gets the selected item in a TreeView.

Namespace:  System.Windows.Controls
Assembly:  PresentationFramework (in PresentationFramework.dll)
[BindableAttribute(true)]
public Object SelectedItem { get; }

Property Value

Type: System.Object
The selected object in the TreeView, or null if no item is selected. The default value is null.

Identifier field

SelectedItemProperty

Metadata properties set to true

None

The SelectedItem property on the TreeView control is a read-only property and is set to an item when the IsSelected property value of the item TreeView is set to true.

The following example shows how to get the value of the SelectedItem property.


TreeViewItem selectedTVI = (TreeViewItem)myTreeView.SelectedItem;


More Code

How to: Use SelectedValue, SelectedValuePath, and SelectedItem This example shows how to use the SelectedValue and SelectedValuePath properties to specify a value for the SelectedItem of a TreeView.

.NET Framework

Supported in: 4, 3.5, 3.0

.NET Framework Client Profile

Supported in: 4, 3.5 SP1

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
SelectedItem != null

tvItem.IsSelected = true;

tvItem.CaptureMouse();

//Doing the above will ensure that the tree view item is selected

TreeView.SelectedItem Property has no setter
TreeView.SelectedItem Property has no setter
 
Without a setter options are limited.  I am using a TreeView as a Prism 'navigation hub'.  My users traverse the TreeView and then I use Prism to navigate to a View in a Region loaded with the data from the TreeView SelectedItem.  But if the user makes changes and does not save them, and uses the TreeView to navigate away, I pop up a modal control and if the user cancels navigation I can get Prism to leave the 'dirty' view active, but I cannot get the TreeView SelectedItem to roll back.  Even if I save the previous SelectedItem and handle the Prism NavigationCallback, I cannot set the TreeView SelectedItem back.  So the UI looks terrible.  The TreeView is out of sync with the 'dirty' view.  This cannot be shipped.  What's a developer to do?