App.xaml 604 B

123456789101112131415
  1. <Application x:Class="ShabaninDemoEkz.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:ShabaninDemoEkz"
  5. StartupUri="MainWindow.xaml">
  6. <Application.Resources>
  7. <Style TargetType="Button">
  8. <Setter Property="Background" Value="#46B29D"/>
  9. </Style>
  10. <Style TargetType="TextBlock">
  11. <Setter Property="FontFamily" Value="Monotype Corsiva"/>
  12. </Style>
  13. </Application.Resources>
  14. </Application>