App.xaml 1.2 KB

1234567891011121314151617181920212223242526272829
  1. <Application x:Class="PPPISI52.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:PPPISI52"
  5. StartupUri="Windows/AutorisationWindow.xaml">
  6. <Application.Resources>
  7. <!--Текст-->
  8. <Style TargetType="TextBlock">
  9. <Setter Property="FontFamily" Value="Comic Sans MS"/>
  10. <Setter Property="FontSize" Value="14"/>
  11. </Style>
  12. <!--Кнопка-->
  13. <Style TargetType="Button">
  14. <Style.Setters>
  15. <Setter Property="Background" Value="HotPink"/>
  16. <Setter Property="FontSize" Value="14"/>
  17. <Setter Property="Foreground" Value="White"/>
  18. </Style.Setters>
  19. <Style.Triggers>
  20. <Trigger Property="IsMouseOver" Value="True">
  21. <Setter Property="Foreground" Value="White"/>
  22. <Setter Property="Background" Value="HotPink"/>
  23. </Trigger>
  24. </Style.Triggers>
  25. </Style>
  26. </Application.Resources>
  27. </Application>