Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. <ResourceDictionary>
  2. <ResourceDictionary.MergedDictionaries>
  3. <ResourceDictionary Source="Resources.xaml"/>
  4. </ResourceDictionary.MergedDictionaries>
  5. <ResourceDictionary.ThemeDictionaries>
  6. <ResourceDictionary x:Key="Default" Source="Theme.xaml"/>
  7. </ResourceDictionary.ThemeDictionaries>
  8. </ResourceDictionary>
  9. </Application.Resources>
  10.  
  11. <ResourceDictionary
  12. x:Key="Default"
  13. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  14. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  15.  
  16. <SolidColorBrush x:Key="ListBoxBackgroundThemeBrush" Color="Transparent" />
  17. <SolidColorBrush x:Key="ListBoxFocusBackgroundThemeBrush" Color="Transparent" />
  18. <SolidColorBrush x:Key="ListBoxItemPressedBackgroundThemeBrush" Color="Transparent" />
  19. <SolidColorBrush x:Key="ListBoxItemSelectedForegroundThemeBrush" Color="Transparent" />
  20. <SolidColorBrush x:Key="ListBoxItemSelectedBackgroundThemeBrush" Color="Transparent" />
  21. <SolidColorBrush x:Key="FocusVisualBlackStrokeThemeBrush" Color="Transparent" />
  22. <SolidColorBrush x:Key="ScrollBarButtonForegroundThemeBrush" Color="Red" />
  23. <SolidColorBrush x:Key="ScrollBarPanningBackgroundThemeBrush" Color="Red" />
  24. <SolidColorBrush x:Key="ButtonPressedBackgroundThemeBrush" Color="White"/>
  25.  
  26. <SolidColorBrush x:Key="SearchBoxHitHighlightSelectedForegroundThemeBrush" Color="Red"/>
  27. <SolidColorBrush x:Key="SearchBoxHitHighlightForegroundThemeBrush" Color="Pink"/>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement