App.xaml 1.5 KB

12345678910111213141516171819202122232425262728293031
  1. <Application x:Class="MusicSmth.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:MusicSmth"
  5. StartupUri="MainWindow.xaml">
  6. <Application.Resources>
  7. <Style TargetType="Button" x:Key="ButtonDefault">
  8. <Setter Property="Foreground" Value="White"/>
  9. <Setter Property="Background" Value="#0000"/>
  10. <Setter Property="BorderBrush" Value="#0000"/>
  11. </Style>
  12. <Style TargetType="Border" x:Key="BorderDefault">
  13. <Setter Property="Background" Value="Black"/>
  14. <Setter Property="CornerRadius" Value="10"/>
  15. </Style>
  16. <Style TargetType="DataGridColumnHeader" x:Key="HeadDefault">
  17. <Setter Property="Foreground" Value="White"/>
  18. <Setter Property="Background" Value="Black"/>
  19. <Setter Property="FontWeight" Value="Bold"/>
  20. </Style>
  21. <Style TargetType="Border" x:Key="BorderInput">
  22. <Setter Property="BorderThickness" Value="1"/>
  23. <Setter Property="CornerRadius" Value="10"/>
  24. <Setter Property="BorderBrush" Value="Black"/>
  25. </Style>
  26. <Style TargetType="TextBox" x:Key="InputDefault">
  27. <Setter Property="Background" Value="#0000"/>
  28. <Setter Property="BorderBrush" Value="#0000"/>
  29. </Style>
  30. </Application.Resources>
  31. </Application>