12345678910111213141516171819202122 |
- <Application x:Class="SneakersSkakunov.App"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:local="clr-namespace:SneakersSkakunov"
- StartupUri="MainWindow.xaml">
- <Application.Resources>
- <Style TargetType="DataGridColumnHeader" x:Key="HeadDefault">
- <Setter Property="Foreground" Value="Black"/>
- <Setter Property="Background" Value="#f5f5f5"/>
- <Setter Property="FontWeight" Value="Bold"/>
- </Style>
- <Style TargetType="Border" x:Key="BorderInput">
- <Setter Property="BorderThickness" Value="1"/>
- <Setter Property="CornerRadius" Value="10"/>
- <Setter Property="BorderBrush" Value="#FFF0F5"/>
- </Style>
- <Style TargetType="TextBox" x:Key="InputDefault">
- <Setter Property="Background" Value="#0000"/>
- <Setter Property="BorderBrush" Value="#0000"/>
- </Style>
- </Application.Resources>
- </Application>
|