App.xaml 1.0 KB

12345678910111213141516171819202122
  1. <Application x:Class="SneakersSkakunov.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:SneakersSkakunov"
  5. StartupUri="MainWindow.xaml">
  6. <Application.Resources>
  7. <Style TargetType="DataGridColumnHeader" x:Key="HeadDefault">
  8. <Setter Property="Foreground" Value="Black"/>
  9. <Setter Property="Background" Value="#f5f5f5"/>
  10. <Setter Property="FontWeight" Value="Bold"/>
  11. </Style>
  12. <Style TargetType="Border" x:Key="BorderInput">
  13. <Setter Property="BorderThickness" Value="1"/>
  14. <Setter Property="CornerRadius" Value="10"/>
  15. <Setter Property="BorderBrush" Value="#FFF0F5"/>
  16. </Style>
  17. <Style TargetType="TextBox" x:Key="InputDefault">
  18. <Setter Property="Background" Value="#0000"/>
  19. <Setter Property="BorderBrush" Value="#0000"/>
  20. </Style>
  21. </Application.Resources>
  22. </Application>