Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| <!--<SnippetHDT>--> | |
| <Window x:Class="SDKSample.Window1" | |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
| Title="HierarchicalDataTemplate Sample" | |
| xmlns:src="clr-namespace:SDKSample"> | |
| <DockPanel> | |
| <DockPanel.Resources> | |
| <src:ListLeagueList x:Key="MyList"/> | |
| <HierarchicalDataTemplate DataType = "{x:Type src:League}" | |
| ItemsSource = "{Binding Path=Divisions}"> | |
| <TextBlock Text="{Binding Path=Name}"/> | |
| </HierarchicalDataTemplate> | |
| <HierarchicalDataTemplate DataType = "{x:Type src:Division}" | |
| ItemsSource = "{Binding Path=Teams}"> | |
| <TextBlock Text="{Binding Path=Name}"/> | |
| </HierarchicalDataTemplate> | |
| <DataTemplate DataType="{x:Type src:Team}"> | |
| <TextBlock Text="{Binding Path=Name}"/> | |
| </DataTemplate> | |
| </DockPanel.Resources> | |
| <Menu Name="menu1" DockPanel.Dock="Top" Margin="10,10,10,10"> | |
| <MenuItem Header="My Soccer Leagues" | |
| ItemsSource="{Binding Source={StaticResource MyList}}" /> | |
| </Menu> | |
| <TreeView> | |
| <TreeViewItem ItemsSource="{Binding Source={StaticResource MyList}}" Header="My Soccer Leagues" /> | |
| </TreeView> | |
| </DockPanel> | |
| </Window> | |
| <!--</SnippetHDT>--> | |