TreeViewItem::Selected Event

 

Occurs when the IsSelected property of a TreeViewItem changes from false to true.

Namespace:   System.Windows.Controls
Assembly:  PresentationFramework (in PresentationFramework.dll)

public:
event RoutedEventHandler^ Selected {
	void add(RoutedEventHandler^ value);
	void remove(RoutedEventHandler^ value);
}

The event occurs when a TreeViewItem becomes the selected 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

SelectedEvent

Routing strategy

Bubbling

Delegate

RoutedEventHandler

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>
No code example is currently available or this language may not be supported.

.NET Framework
Available since 3.0
Silverlight
Available since 3.0
Return to top
Show: