123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <ResourceDictionary
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
- <ResourceDictionary.MergedDictionaries>
- <ResourceDictionary Source="/Resources/Common/Colors.xaml"/>
- </ResourceDictionary.MergedDictionaries>
- <Style x:Key="BasicTextBlockStyle" TargetType="TextBlock">
- <Setter Property="FontFamily" Value="微软雅黑"/>
- <Setter Property="FontWeight" Value="Normal"></Setter>
- </Style>
- <Style x:Key="FormTitleStyle" TargetType="TextBlock" BasedOn="{StaticResource BasicTextBlockStyle}">
- <Setter Property="Margin" Value="21,0,0,0"></Setter>
- <Setter Property="VerticalAlignment" Value="Center"></Setter>
- <Setter Property="FontSize" Value="14"/>
- <Setter Property="Foreground" Value="Black" />
- </Style>
- <Style x:Key="ButtonLabelStyle" TargetType="TextBlock" BasedOn="{StaticResource BasicTextBlockStyle}">
- <Setter Property="VerticalAlignment" Value="Center"></Setter>
- <Setter Property="FontSize" Value="15"/>
- <Setter Property="Foreground" Value="White" />
- </Style>
- <Style x:Key="MessagesTextStyle" TargetType="TextBlock" BasedOn="{StaticResource BasicTextBlockStyle}">
- <Setter Property="FontSize" Value="18"/>
- </Style>
- <Style x:Key="RightText" TargetType="TextBlock" BasedOn="{StaticResource BasicTextBlockStyle}">
- <Setter Property="FontSize" Value="12"/>
- <Setter Property="Margin" Value="0, 0, 0, 0"/>
- <Setter Property="VerticalAlignment" Value="Center"/>
- <Setter Property="HorizontalAlignment" Value="Right"></Setter>
- </Style>
- <Style x:Key="UserNameStyle" TargetType="TextBlock" BasedOn="{StaticResource RightText}">
- <Setter Property="Foreground" Value="{StaticResource module-primary-color-dark-brush}"/>
- </Style>
- <Style x:Key="LoginStyle" TargetType="TextBlock" BasedOn="{StaticResource RightText}">
- <Setter Property="Foreground" Value="#0085b2"/>
- <Setter Property="FontSize" Value="15"/>
- </Style>
- <Style x:Key="RightTextPrimaryColor" TargetType="TextBlock" BasedOn="{StaticResource RightText}">
- <Setter Property="Foreground" Value="Black" />
- <Setter Property="HorizontalAlignment" Value="Left"></Setter>
- </Style>
- <Style x:Key="HugeTextPrimaryColor" TargetType="TextBlock" BasedOn="{StaticResource RightText}">
- <Setter Property="Foreground" Value="Red"/>
- <Setter Property="FontSize" Value="16"/>
- <Setter Property="HorizontalAlignment" Value="Center"></Setter>
- <Setter Property="VerticalAlignment" Value="Center" ></Setter>
- <Setter Property="Margin" Value="10, 0, 10, 0"></Setter>
- </Style>
- <Style x:Key="LabelStyle" TargetType="TextBlock" BasedOn="{StaticResource BasicTextBlockStyle}">
- <Setter Property="Foreground" Value="{StaticResource second-font-color-brush}"/>
- <Setter Property="FontSize" Value="13"/>
- <Setter Property="Margin" Value="0"/>
- </Style>
- <Style x:Key="LoginButtonText" TargetType="Run">
- <Setter Property="Foreground" Value="{StaticResource list-info-font-color-light-brush}"/>
- <Setter Property="FontSize" Value="15"/>
- <Setter Property="FontFamily" Value="微软雅黑"/>
- <Setter Property="FontWeight" Value="Normal"></Setter>
- </Style>
- <!-- List texts -->
- <Style x:Key="ListTextBigLight" TargetType="Run">
- <Setter Property="Foreground" Value="{StaticResource list-info-font-color-light-brush}"/>
- <Setter Property="FontSize" Value="18"/>
- <Setter Property="FontFamily" Value="微软雅黑"/>
- <Setter Property="FontWeight" Value="Normal"></Setter>
- </Style>
- <Style x:Key="ListTextSmallLight" TargetType="Run" BasedOn="{StaticResource ListTextBigLight}">
- <Setter Property="FontSize" Value="14"/>
- </Style>
- <Style x:Key="ListTextBigDark" TargetType="Run" BasedOn="{StaticResource ListTextBigLight}">
- <Setter Property="Foreground" Value="{StaticResource list-info-font-color-brush}"/>
- </Style>
- <Style x:Key="ListTextSmallDark" TargetType="Run" BasedOn="{StaticResource ListTextBigDark}">
- <Setter Property="FontSize" Value="14"/>
- </Style>
- <Style x:Key="Title" TargetType="Run" BasedOn="{StaticResource ListTextBigLight}">
- <Setter Property="Foreground" Value="{StaticResource module-primary-color-dark-brush}"/>
- <Setter Property="FontFamily" Value="微软雅黑"/>
- <Setter Property="FontSize" Value="18"/>
- </Style>
-
- <!--Pagination texts-->
- <Style x:Key="NumberOfPageText" TargetType="TextBlock">
- <Setter Property="Foreground" Value="{StaticResource module-alternative-color-brush}"/>
- <Setter Property="FontSize" Value="12"/>
- <Setter Property="FontWeight" Value="SemiBold"/>
- </Style>
- <Style x:Key="NumberOfPageMouseHoverText" TargetType="TextBlock">
- <Setter Property="Foreground" Value="{StaticResource module-alternative-color-brush}"/>
- <Setter Property="FontSize" Value="15"/>
- <Setter Property="FontWeight" Value="SemiBold"/>
- </Style>
- <Style x:Key="NumberOfSelectedPageText" TargetType="TextBlock">
- <Setter Property="Foreground" Value="{StaticResource module-primary-color-brush}"/>
- <Setter Property="FontSize" Value="15"/>
- <Setter Property="FontWeight" Value="SemiBold"/>
- </Style>
- <Style x:Key="DataGridCellCenterStyle" TargetType="{x:Type TextBlock}">
- <Setter Property="HorizontalAlignment" Value="Center" />
- <Setter Property="VerticalAlignment" Value="Center" />
- </Style>
- <Style x:Key="CheckBoxCellCenterStyle" TargetType="{x:Type CheckBox}">
- <Setter Property="HorizontalAlignment" Value="Center" />
- <Setter Property="VerticalAlignment" Value="Center" />
- </Style>
- <Style x:Key="ComboCellCenterStyle" TargetType="{x:Type ComboBox}">
- <Setter Property="HorizontalAlignment" Value="Center" />
- <Setter Property="VerticalAlignment" Value="Center" />
- </Style>
- </ResourceDictionary>
|