TreeViewPage.xaml 856 B

123456789101112131415161718192021
  1. <UserControl xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. x:Class="ControlCatalog.Pages.TreeViewPage">
  4. <StackPanel Orientation="Vertical" Spacing="4">
  5. <TextBlock Classes="h1">TreeView</TextBlock>
  6. <TextBlock Classes="h2">Displays a hierachical tree of data.</TextBlock>
  7. <StackPanel Orientation="Horizontal"
  8. Margin="0,16,0,0"
  9. HorizontalAlignment="Center"
  10. Spacing="16">
  11. <TreeView SelectionMode="Multiple" Items="{Binding}" Width="250" Height="350">
  12. <TreeView.ItemTemplate>
  13. <TreeDataTemplate ItemsSource="{Binding Children}">
  14. <TextBlock Text="{Binding Header}"/>
  15. </TreeDataTemplate>
  16. </TreeView.ItemTemplate>
  17. </TreeView>
  18. </StackPanel>
  19. </StackPanel>
  20. </UserControl>