| 1234567891011121314151617181920212223242526272829 |
- <Styles xmlns="https://github.com/avaloniaui"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
-
- <Style Selector="Image.ExtraSmall">
- <Setter Property="Height" Value="{DynamicResource PrsExtraSmallImageHeight}" />
- <Setter Property="Width" Value="{DynamicResource PrsExtraSmallImageWidth}" />
- </Style>
-
- <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>
|