TreeViewItem.Expanded Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Occurs when the IsExpanded property changes from false
to true
.
public:
event System::Windows::RoutedEventHandler ^ Expanded;
public event System.Windows.RoutedEventHandler Expanded;
member this.Expanded : System.Windows.RoutedEventHandler
Public Custom Event Expanded As RoutedEventHandler
Event Type
Examples
The following example shows how to assign an event handler for the Expanded event to a TreeViewItem and how to define the event handler in the code-behind.
<TreeViewItem Header="Employee1"
Name="Employee1Data"
IsExpanded="True"
Collapsed="OnCollapsed"
Expanded="OnExpanded">
<TreeViewItem Header="Work Days"
Name="EmployeeWorkDays"
IsSelected="True">
<TreeViewItem Header="Tuesday" />
<TreeViewItem Header="Friday"/>
</TreeViewItem>
</TreeViewItem>
<TreeViewItem Header="Employee2"
Name="Employee2Data">
<TreeViewItem Header="Work Days"
Name="emp2WorkDays"
Selected="GetSchedule"
Unselected="SetSchedule">
<TreeViewItem Header="Monday" />
<TreeViewItem Header="Wednesday"/>
</TreeViewItem>
</TreeViewItem>
private void OnExpanded(object sender, RoutedEventArgs e)
{
//Perform actions when the TreeViewItem is expanded
}
Private Sub OnExpanded(ByVal sender As Object, ByVal e As RoutedEventArgs)
'Perform actions when the TreeViewItem is expanded
End Sub
Remarks
This event occurs when a TreeViewItem is expanded so that its child elements are visible.
Routed Event Information
Item | Value |
---|---|
Identifier field | ExpandedEvent |
Routing strategy | Bubbling |
Delegate | RoutedEventHandler |
Applies to
See also
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET