TextBoxStyle.xaml 1.2 KB

123456789101112131415161718192021222324
  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. <!-- style for property seconed title -->
  16. <Style x:Key="PropertyHeaderLv2" TargetType="{x:Type TextBlock}">
  17. <Setter Property="FontFamily" Value="Segoe UI" />
  18. <Setter Property="FontSize" Value="12" />
  19. <Setter Property="FontWeight" Value="SemiBold" />
  20. <Setter Property="Foreground" Value="{StaticResource color.sys.text.neutral.lv2}" />
  21. </Style>
  22. </ResourceDictionary>