ListBoxPage.xaml 488 B

12345678910111213
  1. <UserControl xmlns="https://github.com/avaloniaui">
  2. <StackPanel Orientation="Vertical" Spacing="4">
  3. <TextBlock Classes="h1">ListBox</TextBlock>
  4. <TextBlock Classes="h2">Hosts a collection of ListBoxItem.</TextBlock>
  5. <StackPanel Orientation="Horizontal"
  6. Margin="0,16,0,0"
  7. HorizontalAlignment="Center"
  8. Spacing="16">
  9. <ListBox Items="{Binding}" Width="250" Height="350"></ListBox>
  10. </StackPanel>
  11. </StackPanel>
  12. </UserControl>