App.xaml 812 B

1234567891011121314151617181920212223
  1. <Application x:Class="TestDemo.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:TestDemo"
  5. StartupUri="MainWindow.xaml">
  6. <Application.Resources>
  7. <Style TargetType="TextBlock">
  8. <Setter Property="Foreground" Value="Black"></Setter>
  9. <Setter Property="FontFamily" Value="Bahnschrift SemiLight"></Setter>
  10. </Style>
  11. <Style TargetType="Border">
  12. <Setter Property="Background" Value="Yellow"></Setter>
  13. </Style>
  14. <Style TargetType="Button">
  15. <Setter Property="Background" Value="White"></Setter>
  16. </Style>
  17. </Application.Resources>
  18. </Application>