TreeView.SelectedItem Property
.NET Framework 4
Gets the selected item in a TreeView.
Assembly: PresentationFramework (in PresentationFramework.dll)
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.
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. |
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.
SelectedItem != null
tvItem.IsSelected = true;
tvItem.CaptureMouse();
//Doing the above will ensure that the tree view item is selected
- 1/22/2012
- Emeka MC
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?
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?
- 6/10/2011
- Joe Kahl