123456789101112131415161718192021222324 |
- <ResourceDictionary xmlns="https://github.com/avaloniaui"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:system="clr-namespace:System;assembly=System.Runtime">
- <system:Double x:Key="PrsFontSizeExtraLarge">20</system:Double>
- <system:Double x:Key="PrsFontSizeLarge">16</system:Double>
- <system:Double x:Key="PrsFontSizeNormal">14</system:Double>
- <system:Double x:Key="PrsFontSizeSmall">12</system:Double>
- <system:Double x:Key="PrsFontSizeExtraSmall">10</system:Double>
- <FontWeight x:Key="PrsFontWeightBold">DemiBold</FontWeight>
- <FontWeight x:Key="PrsFontWeightNormal">Normal</FontWeight>
- <FontStyle x:Key="PrsFontStyleNormal">Normal</FontStyle>
- <FontStyle x:Key="PrsFontStylItalic">Italic</FontStyle>
- </ResourceDictionary>
|