App.xaml 666 B

12345678910111213141516
  1. <Application x:Class="AlenaTest.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:AlenaTest"
  5. StartupUri="MainWindow.xaml">
  6. <Application.Resources>
  7. <Style TargetType="TextBlock">
  8. <Setter Property="FontFamily" Value="Comic Sans MS"></Setter>
  9. <Setter Property="FontSize" Value="14"></Setter>
  10. </Style>
  11. <Style TargetType="Button">
  12. <Setter Property="Background" Value="#ffe0e3"></Setter>
  13. </Style>
  14. </Application.Resources>
  15. </Application>