App.xaml 691 B

1234567891011121314151617
  1. <Application x:Class="DemoPractick.App"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:local="clr-namespace:DemoPractick"
  5. StartupUri="Main.xaml">
  6. <Application.Resources>
  7. <Style TargetType="TextBlock">
  8. <Setter Property="FontFamily" Value="Tw Cen MT"/>
  9. </Style>
  10. <Style TargetType="Label">
  11. <Setter Property="FontFamily" Value="Tw Cen MT"/>
  12. </Style>
  13. <Style TargetType="Button">
  14. <Setter Property="FontSize" Value="18"/>
  15. </Style>
  16. </Application.Resources>
  17. </Application>