TextBoxStyle.xaml 818 B

12345678910111213141516
  1. <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  2. <Style x:Key="PagesView_txtContext" TargetType="{x:Type TextBlock}">
  3. <Setter Property="FontFamily" Value="Segoe UI" />
  4. <Setter Property="FontSize" Value="12" />
  5. </Style>
  6. <Style x:Key="ViewMode_txtContext" TargetType="{x:Type TextBlock}">
  7. <Setter Property="FontFamily" Value="Segoe UI" />
  8. <Setter Property="FontSize" Value="11" />
  9. </Style>
  10. <Style x:Key="PagesView_titleContext" TargetType="{x:Type TextBlock}">
  11. <Setter Property="FontFamily" Value=" Segoe UI Semibold" />
  12. <Setter Property="FontWeight" Value="SemiBold" />
  13. <Setter Property="FontSize" Value="14" />
  14. </Style>
  15. </ResourceDictionary>