DropDownPage.xaml 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. <UserControl xmlns="https://github.com/avaloniaui">
  2. <StackPanel Orientation="Vertical" Spacing="4">
  3. <TextBlock Classes="h1">DropDown</TextBlock>
  4. <TextBlock Classes="h2">A drop-down list.</TextBlock>
  5. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Margin="0 16 0 0" Spacing="8">
  6. <DropDown SelectedIndex="0">
  7. <DropDownItem>Inline Items</DropDownItem>
  8. <DropDownItem>Inline Item 2</DropDownItem>
  9. <DropDownItem>Inline Item 3</DropDownItem>
  10. <DropDownItem>Inline Item 4</DropDownItem>
  11. </DropDown>
  12. <DropDown SelectedIndex="0">
  13. <DropDownItem>
  14. <Panel>
  15. <Rectangle Fill="{DynamicResource ThemeAccentBrush}"/>
  16. <TextBlock Margin="8">Control Items</TextBlock>
  17. </Panel>
  18. </DropDownItem>
  19. <DropDownItem>
  20. <Ellipse Width="50" Height="50" Fill="Yellow"/>
  21. </DropDownItem>
  22. <DropDownItem>
  23. <TextBox Text="TextBox"/>
  24. </DropDownItem>
  25. </DropDown>
  26. </StackPanel>
  27. </StackPanel>
  28. </UserControl>