App.xaml 714 B

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