ListBoxPage.xaml 612 B

123456789101112131415
  1. <UserControl xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. x:Class="ControlCatalog.Pages.ListBoxPage">
  4. <StackPanel Orientation="Vertical" Spacing="4">
  5. <TextBlock Classes="h1">ListBox</TextBlock>
  6. <TextBlock Classes="h2">Hosts a collection of ListBoxItem.</TextBlock>
  7. <StackPanel Orientation="Horizontal"
  8. Margin="0,16,0,0"
  9. HorizontalAlignment="Center"
  10. Spacing="16">
  11. <ListBox Items="{Binding}" Width="250" Height="350"></ListBox>
  12. </StackPanel>
  13. </StackPanel>
  14. </UserControl>