Border.axaml 1.4 KB

1234567891011121314151617181920212223242526272829303132
  1. <Styles xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <Style Selector="Border.Standard">
  4. <Setter Property="BorderBrush" Value="{DynamicResource PrsTileBorder}" />
  5. <Setter Property="BorderThickness">
  6. <Setter.Value>
  7. <DynamicResource ResourceKey="PrsBorderThickness" />
  8. </Setter.Value>
  9. </Setter>
  10. <Setter Property="Background" Value="Transparent" />
  11. <Setter Property="CornerRadius" Value="{DynamicResource PrsCornerRadius}" />
  12. <Setter Property="Margin" Value="{DynamicResource PrsControlSpacing}" />
  13. </Style>
  14. <Style Selector="Border.Alert">
  15. <Setter Property="HorizontalAlignment" Value="Right" />
  16. <Setter Property="VerticalAlignment" Value="Top" />
  17. <Setter Property="Margin" Value="0,5,5,0" />
  18. <Setter Property="BorderBrush" Value="{DynamicResource PrsAlertBorder}" />
  19. <Setter Property="BorderThickness">
  20. <Setter.Value>
  21. <DynamicResource ResourceKey="PrsBorderThickness" />
  22. </Setter.Value>
  23. </Setter>
  24. <Setter Property="Background" Value="{DynamicResource PrsAlertBackground}" />
  25. <Setter Property="Height" Value="20" />
  26. <Setter Property="MinWidth" Value="20" />
  27. <Setter Property="CornerRadius" Value="10" />
  28. </Style>
  29. </Styles>