123456789101112131415161718192021222324 |
- <Application x:Class="UP_Venediktov.App"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:local="clr-namespace:UP_Venediktov"
- StartupUri="MainWindow.xaml">
- <Application.Resources>
- <Style x:Key="BtnSt" TargetType="Button">
- <Setter Property="Background" Value="#76E383"></Setter>
- <Setter Property="Height" Value="30"></Setter>
- <Setter Property="Width" Value="200"></Setter>
- </Style>
- <Style x:Key="TBSt" TargetType="TextBox">
- <Setter Property="Width" Value="200"></Setter>
- </Style>
- <Style x:Key="GBSt" TargetType="GroupBox">
- <Setter Property="BorderBrush" Value="#498C51"></Setter>
- <Setter Property="Width" Value="300"></Setter>
- <Setter Property="BorderThickness" Value="1"></Setter>
- </Style>
- <Style x:Key="PSBSt" TargetType="PasswordBox">
- <Setter Property="Width" Value="200"></Setter>
- </Style>
- </Application.Resources>
- </Application>
|