You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
1.1 KiB
Plaintext
15 lines
1.1 KiB
Plaintext
1 year ago
|
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
||
|
<ResourceDictionary.MergedDictionaries>
|
||
|
<ResourceDictionary Source="pack://application:,,,/Philisense.Congress;component/Resources/Styles/Colors.xaml"></ResourceDictionary>
|
||
|
<ResourceDictionary Source="pack://application:,,,/Philisense.Congress;component/Resources/Styles/Fonts.xaml"></ResourceDictionary>
|
||
|
<ResourceDictionary Source="pack://application:,,,/Philisense.Congress;component/Resources/Styles/Sizes.xaml"></ResourceDictionary>
|
||
|
</ResourceDictionary.MergedDictionaries>
|
||
|
<!--基样式-->
|
||
|
<Style x:Key="BaseStyle" BasedOn="{x:Null}" TargetType="{x:Type Control}">
|
||
|
<Setter Property="FontFamily" Value="{DynamicResource DefaultFontFamily}"></Setter>
|
||
|
<Setter Property="FontSize" Value="{DynamicResource LargeFontSize}"></Setter>
|
||
|
<Setter Property="Foreground" Value="{DynamicResource DefaultForeground}"></Setter>
|
||
|
</Style>
|
||
|
|
||
|
</ResourceDictionary>
|