123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <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>
-
- </Application.Resources>
- </Application>
|