App.xaml 956 B

12345678910111213141516171819202122232425262728
  1. <Application x:Class="UP2022Ex.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:UP2022Ex"
  5. StartupUri="MainWindow.xaml">
  6. <Application.Resources>
  7. <Style TargetType="TextBlock">
  8. <Style.Setters>
  9. <Setter Property="FontFamily" Value="Monotype Corsiva"/>
  10. <Setter Property="FontSize" Value="14"/>
  11. </Style.Setters>
  12. </Style>
  13. <Style TargetType="TextBox">
  14. <Style.Setters>
  15. <Setter Property="FontFamily" Value="Monotype Corsiva"/>
  16. </Style.Setters>
  17. </Style>
  18. <Style TargetType="Button">
  19. <Style.Setters>
  20. <Setter Property="Background" Value="#46B29D"/>
  21. </Style.Setters>
  22. </Style>
  23. </Application.Resources>
  24. </Application>