App.xaml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. <Style x:Key="BtnStUP" TargetType="Button">
  38. <Setter Property="Background" Value="#87CEEB"/>
  39. <Setter Property="BorderBrush" Value="#7FFFD4"/>
  40. <Setter Property="Height" Value="50"/>
  41. <Setter Property="Width" Value="150"/>
  42. </Style>
  43. <Style x:Key="TxtBlUP" TargetType="TextBlock">
  44. <Setter Property="Foreground" Value="White"/>
  45. <Setter Property="FontSize" Value="25"/>
  46. <Setter Property="HorizontalAlignment" Value="Center"/>
  47. <Setter Property="Margin" Value="0,10,0,25"/>
  48. </Style>
  49. <Style x:Key="TxtBlUP2" TargetType="TextBlock">
  50. <Setter Property="Foreground" Value="White"/>
  51. <Setter Property="FontSize" Value="15"/>
  52. <Setter Property="HorizontalAlignment" Value="Center"/>
  53. <Setter Property="Margin" Value="55,10,0,25"/>
  54. <Setter Property="Width" Value="305"/>
  55. </Style>
  56. </Application.Resources>
  57. </Application>