App.xaml 547 B

123456789101112131415
  1. <Application x:Class="WpfApp1.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:WpfApp1"
  5. StartupUri="MainWindow.xaml">
  6. <Application.Resources>
  7. <Style TargetType="TextBlock">
  8. <Setter Property="FontFamily" Value="Monotype Corsiva" />
  9. <Setter Property="FontSize" Value="20"/>
  10. </Style>
  11. </Application.Resources>
  12. </Application>