ButtonPage.xaml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <UserControl xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <StackPanel Orientation="Vertical" Spacing="4">
  4. <TextBlock Classes="h1">Button</TextBlock>
  5. <TextBlock Classes="h2">A button control</TextBlock>
  6. <StackPanel Orientation="Horizontal"
  7. Margin="0,16,0,0"
  8. HorizontalAlignment="Center"
  9. Spacing="16">
  10. <StackPanel Orientation="Vertical" Spacing="8" Width="150">
  11. <Button>Button</Button>
  12. <Button Foreground="White">Foreground</Button>
  13. <Button Background="{DynamicResource ThemeAccentBrush}">Background</Button>
  14. <Button IsEnabled="False">Disabled</Button>
  15. <Button Content="Re-themed">
  16. <Button.Styles>
  17. <Style>
  18. <Style.Resources>
  19. <SolidColorBrush x:Key="ThemeBorderMidBrush">Red</SolidColorBrush>
  20. <SolidColorBrush x:Key="ThemeControlDarkBrush">DarkRed</SolidColorBrush>
  21. </Style.Resources>
  22. </Style>
  23. </Button.Styles>
  24. </Button>
  25. </StackPanel>
  26. <StackPanel Orientation="Vertical" Spacing="8" Width="150">
  27. <Button BorderThickness="0">No Border</Button>
  28. <Button BorderBrush="{DynamicResource ThemeAccentBrush}">Border Color</Button>
  29. <Button BorderBrush="{DynamicResource ThemeAccentBrush}" BorderThickness="4">Thick Border</Button>
  30. <Button BorderBrush="{DynamicResource ThemeAccentBrush}" BorderThickness="4" IsEnabled="False">Disabled</Button>
  31. </StackPanel>
  32. </StackPanel>
  33. </StackPanel>
  34. </UserControl>