123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <Application x:Class="Prakticheskaya5_Venediktov.App"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:local="clr-namespace:Prakticheskaya5_Venediktov"
- StartupUri="MainWindow.xaml">
- <Application.Resources>
- <Style x:Key="BtnSt" TargetType="Button">
- <Setter Property="Background" Value="#87CEEB" />
- <Setter Property="Margin" Value="458,125,92,175" />
- <Setter Property="Width" Value="250"/>
- <Setter Property="Height" Value="50"/>
- <Setter Property="FontSize" Value="25"/>
- <Setter Property="BorderBrush" Value="#7FFFD4"/>
- </Style>
- <Style x:Key="TxtBx" TargetType="TextBox">
- <Setter Property="FontSize" Value="35"/>
- <Setter Property="Width" Value="350"/>
- <Setter Property="Height" Value="50"/>
- <Setter Property="Background" Value="#ADD8E6"/>
-
- </Style>
- <Style x:Key="BtnSt2" TargetType="Button">
- <Setter Property="Background" Value="#87CEEB" />
- <Setter Property="Margin" Value="92,125,458,175" />
- <Setter Property="Width" Value="250"/>
- <Setter Property="Height" Value="50"/>
- <Setter Property="FontSize" Value="25"/>
- <Setter Property="BorderBrush" Value="#7FFFD4"/>
- </Style>
- <Style x:Key="BtnSt3" TargetType="Button">
- <Setter Property="Background" Value="#00BFFF" />
- <Setter Property="Margin" Value=" 0,20,0,0"/>
- <Setter Property="Width" Value="250"/>
- <Setter Property="Height" Value="50"/>
- <Setter Property="FontSize" Value="25"/>
- <Setter Property="BorderBrush" Value="#7FFFD4"/>
- </Style>
- <Style x:Key="BtnStUP" TargetType="Button">
- <Setter Property="Background" Value="#87CEEB"/>
- <Setter Property="BorderBrush" Value="#7FFFD4"/>
- <Setter Property="Height" Value="50"/>
- <Setter Property="Width" Value="150"/>
- </Style>
- <Style x:Key="TxtBlUP" TargetType="TextBlock">
- <Setter Property="Foreground" Value="White"/>
- <Setter Property="FontSize" Value="25"/>
- <Setter Property="HorizontalAlignment" Value="Center"/>
- <Setter Property="Margin" Value="0,10,0,25"/>
- </Style>
- <Style x:Key="TxtBlUP2" TargetType="TextBlock">
- <Setter Property="Foreground" Value="White"/>
- <Setter Property="FontSize" Value="15"/>
- <Setter Property="HorizontalAlignment" Value="Center"/>
- <Setter Property="Margin" Value="55,10,0,25"/>
- <Setter Property="Width" Value="305"/>
- </Style>
- </Application.Resources>
- </Application>
|