App.xaml 900 B

1234567891011121314151617181920
  1. <Application x:Class="Namordnik.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:Namordnik"
  5. StartupUri="MainWindow.xaml">
  6. <Application.Resources>
  7. <Style TargetType="TextBlock">
  8. <Setter Property="FontSize" Value="12"/>
  9. <Setter Property="FontFamily" Value="Tw Cen MT"></Setter>
  10. </Style>
  11. <Style TargetType="ComboBox">
  12. <Setter Property="FontFamily" Value="Tw Cen MT"></Setter>
  13. <Setter Property="Background" Value="#B0E5FD"/>
  14. </Style>
  15. <Style TargetType="Button">
  16. <Setter Property="Background" Value="#FDBD40"/>
  17. <Setter Property="FontFamily" Value="Tw Cen MT"></Setter>
  18. </Style>
  19. </Application.Resources>
  20. </Application>