App.xaml 1.1 KB

123456789101112131415161718192021222324
  1. <Application x:Class="UP_Venediktov.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:UP_Venediktov"
  5. StartupUri="MainWindow.xaml">
  6. <Application.Resources>
  7. <Style x:Key="BtnSt" TargetType="Button">
  8. <Setter Property="Background" Value="#76E383"></Setter>
  9. <Setter Property="Height" Value="30"></Setter>
  10. <Setter Property="Width" Value="200"></Setter>
  11. </Style>
  12. <Style x:Key="TBSt" TargetType="TextBox">
  13. <Setter Property="Width" Value="200"></Setter>
  14. </Style>
  15. <Style x:Key="GBSt" TargetType="GroupBox">
  16. <Setter Property="BorderBrush" Value="#498C51"></Setter>
  17. <Setter Property="Width" Value="300"></Setter>
  18. <Setter Property="BorderThickness" Value="1"></Setter>
  19. </Style>
  20. <Style x:Key="PSBSt" TargetType="PasswordBox">
  21. <Setter Property="Width" Value="200"></Setter>
  22. </Style>
  23. </Application.Resources>
  24. </Application>