123456789101112131415161718192021222324 |
- <Styles xmlns="https://github.com/avaloniaui"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
-
- <Style Selector="Image.Small">
- <Setter Property="Height" Value="{DynamicResource PrsSmallImageHeight}" />
- <Setter Property="Width" Value="{DynamicResource PrsSmallImageWidth}" />
- </Style>
- <Style Selector="Image.Medium">
- <Setter Property="Height" Value="{DynamicResource PrsMediumImageHeight}" />
- <Setter Property="Width" Value="{DynamicResource PrsMediumImageWidth}" />
- </Style>
- <Style Selector="Image.Large">
- <Setter Property="Height" Value="{DynamicResource PrsLargeImageHeight}" />
- <Setter Property="Width" Value="{DynamicResource PrsLargeImageWidth}" />
- </Style>
-
- <Style Selector="Image.ExtraLarge">
- <Setter Property="Height" Value="{DynamicResource PrsExtraLargeImageHeight}" />
- <Setter Property="Width" Value="{DynamicResource PrsExtraLargeImageWidth}" />
- </Style>
- </Styles>
|