Separator.axaml 642 B

1234567891011121314151617
  1. <Styles xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <Style Selector="Separator">
  4. <Setter Property="BorderBrush" Value="{DynamicResource SystemChromeGrayColor}" />
  5. <Setter Property="BorderThickness">
  6. <Setter.Value>
  7. <DynamicResource ResourceKey="PrsBorderThickness" />
  8. </Setter.Value>
  9. </Setter>
  10. <Setter Property="Margin" Value="{DynamicResource PrsControlSpacing}" />
  11. <Setter Property="MinHeight" Value="10" />
  12. <Setter Property="HorizontalAlignment" Value="Stretch" />
  13. </Style>
  14. </Styles>