App.xaml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <Application x:Class="Prakticheskaya5_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:Prakticheskaya5_Venediktov"
  5. StartupUri="MainWindow.xaml">
  6. <Application.Resources>
  7. <Style x:Key="BtnSt" TargetType="Button">
  8. <Setter Property="Background" Value="#87CEEB" />
  9. <Setter Property="Margin" Value="458,125,92,175" />
  10. <Setter Property="Width" Value="250"/>
  11. <Setter Property="Height" Value="50"/>
  12. <Setter Property="FontSize" Value="25"/>
  13. <Setter Property="BorderBrush" Value="#7FFFD4"/>
  14. </Style>
  15. <Style x:Key="TxtBx" TargetType="TextBox">
  16. <Setter Property="FontSize" Value="35"/>
  17. <Setter Property="Width" Value="350"/>
  18. <Setter Property="Height" Value="50"/>
  19. <Setter Property="Background" Value="#ADD8E6"/>
  20. </Style>
  21. <Style x:Key="BtnSt2" TargetType="Button">
  22. <Setter Property="Background" Value="#87CEEB" />
  23. <Setter Property="Margin" Value="92,125,458,175" />
  24. <Setter Property="Width" Value="250"/>
  25. <Setter Property="Height" Value="50"/>
  26. <Setter Property="FontSize" Value="25"/>
  27. <Setter Property="BorderBrush" Value="#7FFFD4"/>
  28. </Style>
  29. <Style x:Key="BtnSt3" TargetType="Button">
  30. <Setter Property="Background" Value="#00BFFF" />
  31. <Setter Property="Margin" Value=" 0,20,0,0"/>
  32. <Setter Property="Width" Value="250"/>
  33. <Setter Property="Height" Value="50"/>
  34. <Setter Property="FontSize" Value="25"/>
  35. <Setter Property="BorderBrush" Value="#7FFFD4"/>
  36. </Style>
  37. </Application.Resources>
  38. </Application>