SliderPage.xaml 889 B

1234567891011121314151617181920212223
  1. <UserControl xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. x:Class="ControlCatalog.Pages.SliderPage">
  4. <StackPanel Orientation="Vertical" Spacing="4">
  5. <TextBlock Classes="h1">Slider</TextBlock>
  6. <TextBlock Classes="h2">A control that lets the user select from a range of values by moving a Thumb control along a Track.</TextBlock>
  7. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" Margin="0 16 0 0" Spacing="16">
  8. <Slider Value="0"
  9. Minimum="0"
  10. Maximum="100"
  11. Width="300"/>
  12. <Slider Value="0"
  13. Minimum="0"
  14. Maximum="100"
  15. Orientation="Vertical"
  16. IsSnapToTickEnabled="True"
  17. TickFrequency="10"
  18. Height="300"/>
  19. </StackPanel>
  20. </StackPanel>
  21. </UserControl>