TreeViewPage.xaml 697 B

12345678910111213141516171819
  1. <UserControl xmlns="https://github.com/avaloniaui">
  2. <StackPanel Orientation="Vertical" Gap="4">
  3. <TextBlock Classes="h1">TreeView</TextBlock>
  4. <TextBlock Classes="h2">Displays a hierachical tree of data.</TextBlock>
  5. <StackPanel Orientation="Horizontal"
  6. Margin="0,16,0,0"
  7. HorizontalAlignment="Center"
  8. Gap="16">
  9. <TreeView Items="{Binding}" Width="250" Height="350">
  10. <TreeView.ItemTemplate>
  11. <TreeDataTemplate ItemsSource="{Binding Children}">
  12. <TextBlock Text="{Binding Header}"/>
  13. </TreeDataTemplate>
  14. </TreeView.ItemTemplate>
  15. </TreeView>
  16. </StackPanel>
  17. </StackPanel>
  18. </UserControl>