dark.xaml 954 B

1234567891011121314151617181920212223242526272829303132333435
  1. <ResourceDictionary
  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:WpfApp3">
  5. <Style
  6. x:Key="TextBlockStyle"
  7. TargetType="TextBlock">
  8. <Setter
  9. Property="Background"
  10. Value="Gray" />
  11. <Setter
  12. Property="Foreground"
  13. Value="White" />
  14. </Style>
  15. <Style
  16. x:Key="WindowStyle"
  17. TargetType="Window">
  18. <Setter
  19. Property="Background"
  20. Value="Gray" />
  21. </Style>
  22. <Style
  23. x:Key="ButtonStyle"
  24. TargetType="Button">
  25. <Setter
  26. Property="Background"
  27. Value="Gray" />
  28. <Setter
  29. Property="Foreground"
  30. Value="White" />
  31. <Setter
  32. Property="BorderBrush"
  33. Value="White" />
  34. </Style>
  35. </ResourceDictionary>