CarouselPage.xaml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <UserControl xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. x:Class="ControlCatalog.Pages.CarouselPage">
  4. <StackPanel Orientation="Vertical" Spacing="4">
  5. <TextBlock Classes="h1">Carousel</TextBlock>
  6. <TextBlock Classes="h2">An items control that displays its items as pages that fill the control.</TextBlock>
  7. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Margin="0 16 0 0" Spacing="8">
  8. <Button Name="left" VerticalAlignment="Center" Padding="20">
  9. <Path Data="M20,11V13H8L13.5,18.5L12.08,19.92L4.16,12L12.08,4.08L13.5,5.5L8,11H20Z" Fill="Black"/>
  10. </Button>
  11. <Carousel Name="carousel">
  12. <Carousel.PageTransition>
  13. <PageSlide Duration="0.25" Orientation="Vertical" />
  14. </Carousel.PageTransition>
  15. <Image Source="/Assets/delicate-arch-896885_640.jpg"/>
  16. <Image Source="/Assets/hirsch-899118_640.jpg"/>
  17. <Image Source="/Assets/maple-leaf-888807_640.jpg"/>
  18. </Carousel>
  19. <Button Name="right" VerticalAlignment="Center" Padding="20">
  20. <Path Data="M4,11V13H16L10.5,18.5L11.92,19.92L19.84,12L11.92,4.08L10.5,5.5L16,11H4Z" Fill="Black"/>
  21. </Button>
  22. </StackPanel>
  23. <StackPanel Orientation="Horizontal" Spacing="4">
  24. <TextBlock VerticalAlignment="Center">Transition</TextBlock>
  25. <ComboBox Name="transition" SelectedIndex="1" VerticalAlignment="Center">
  26. <ComboBoxItem>None</ComboBoxItem>
  27. <ComboBoxItem>Slide</ComboBoxItem>
  28. <ComboBoxItem>Crossfade</ComboBoxItem>
  29. </ComboBox>
  30. </StackPanel>
  31. <StackPanel Orientation="Horizontal" Spacing="4">
  32. <TextBlock VerticalAlignment="Center">Orientation</TextBlock>
  33. <ComboBox Name="orientation" SelectedIndex="1" VerticalAlignment="Center">
  34. <ComboBoxItem>Horizontal</ComboBoxItem>
  35. <ComboBoxItem>Vertical</ComboBoxItem>
  36. </ComboBox>
  37. </StackPanel>
  38. </StackPanel>
  39. </UserControl>