Image.axaml 1.2 KB

1234567891011121314151617181920212223242526272829
  1. <Styles xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  3. <Style Selector="Image.ExtraSmall">
  4. <Setter Property="Height" Value="{DynamicResource PrsExtraSmallImageHeight}" />
  5. <Setter Property="Width" Value="{DynamicResource PrsExtraSmallImageWidth}" />
  6. </Style>
  7. <Style Selector="Image.Small">
  8. <Setter Property="Height" Value="{DynamicResource PrsSmallImageHeight}" />
  9. <Setter Property="Width" Value="{DynamicResource PrsSmallImageWidth}" />
  10. </Style>
  11. <Style Selector="Image.Medium">
  12. <Setter Property="Height" Value="{DynamicResource PrsMediumImageHeight}" />
  13. <Setter Property="Width" Value="{DynamicResource PrsMediumImageWidth}" />
  14. </Style>
  15. <Style Selector="Image.Large">
  16. <Setter Property="Height" Value="{DynamicResource PrsLargeImageHeight}" />
  17. <Setter Property="Width" Value="{DynamicResource PrsLargeImageWidth}" />
  18. </Style>
  19. <Style Selector="Image.ExtraLarge">
  20. <Setter Property="Height" Value="{DynamicResource PrsExtraLargeImageHeight}" />
  21. <Setter Property="Width" Value="{DynamicResource PrsExtraLargeImageWidth}" />
  22. </Style>
  23. </Styles>