TreeViewItem::Unselected Event
.NET Framework (current version)
Occurs when the IsSelected property of a TreeViewItem changes from true to false.
Assembly: PresentationFramework (in PresentationFramework.dll)
The event occurs when the selection changes from this TreeViewItem to another TreeViewItem in a TreeView control. This event is related to the SelectedItemChanged event that occurs when there is a change in the SelectedItem property of a TreeView control.
Identifier field | |
Routing strategy | Bubbling |
Delegate |
The following example shows how to assign an event handler for the Selected event to a TreeViewItem, and how to define the event handler.
<TreeViewItem Header="Employee2" Name="Employee2Data"> <TreeViewItem Header="Work Days" Name="emp2WorkDays" Selected="GetSchedule" Unselected="SetSchedule"> <TreeViewItem Header="Monday" /> <TreeViewItem Header="Wednesday"/> </TreeViewItem>
.NET Framework
Available since 3.0
Silverlight
Available since 3.0
Available since 3.0
Silverlight
Available since 3.0
Show: