Image.axaml 1001 B

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