1
- <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> <ResourceDictionary.MergedDictionaries> <ResourceDictionary Source="Base.xaml"></ResourceDictionary> </ResourceDictionary.MergedDictionaries> <Style x:Key="QueryBoxStyle" BasedOn="{StaticResource BaseQueryBoxStyle}" TargetType="{x:Type TextBox}"> <Setter Property="Background" Value="#000000"/> <Setter Property="Foreground" Value="#ffffff" /> </Style> <Style x:Key="WindowBorderStyle" BasedOn="{StaticResource BaseWindowBorderStyle}" TargetType="{x:Type Border}"> <Setter Property="Background" Value="#000000"></Setter> </Style> <Style x:Key="WindowStyle" TargetType="{x:Type Window}" BasedOn="{StaticResource BaseWindowStyle}" > </Style> <Style x:Key="PendingLineStyle" BasedOn="{StaticResource BasePendingLineStyle}" TargetType="{x:Type Line}" > </Style> <Style x:Key="ItemTitleStyle" BasedOn="{StaticResource BaseItemTitleStyle}" TargetType="{x:Type TextBlock}" > <Setter Property="Foreground" Value="#FFFFF8"></Setter> </Style> <Style x:Key="ItemSubTitleStyle" BasedOn="{StaticResource BaseItemSubTitleStyle}" TargetType="{x:Type TextBlock}" > <Setter Property="Foreground" Value="#D9D9D4"></Setter> </Style> <Style x:Key="ItemTitleSelectedStyle" BasedOn="{StaticResource BaseItemTitleSelectedStyle}" TargetType="{x:Type TextBlock}"> <Setter Property="Foreground" Value="#FFFFF8" /> </Style> <Style x:Key="ItemSubTitleSelectedStyle" BasedOn="{StaticResource BaseItemSubTitleSelectedStyle}" TargetType="{x:Type TextBlock}"> <Setter Property="Foreground" Value="#D9D9D4" /> </Style> <SolidColorBrush x:Key="ItemSelectedBackgroundColor">#4F6180</SolidColorBrush> <Style x:Key="ThumbStyle" BasedOn="{StaticResource BaseThumbStyle}" TargetType="{x:Type Thumb}"> </Style> <Style x:Key="ScrollBarStyle" BasedOn="{StaticResource BaseScrollBarStyle}" TargetType="{x:Type ScrollBar}"> </Style> </ResourceDictionary>
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <ResourceDictionary xmlns =" http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns : x =" http://schemas.microsoft.com/winfx/2006/xaml" >
3
+ <ResourceDictionary .MergedDictionaries>
4
+ <ResourceDictionary Source =" Base.xaml" />
5
+ </ResourceDictionary .MergedDictionaries>
6
+ <Style x : Key =" QueryBoxStyle" BasedOn =" {StaticResource BaseQueryBoxStyle}" TargetType =" {x:Type TextBox}" >
7
+ <Setter Property =" Background" Value =" #000000" />
8
+ <Setter Property =" Foreground" Value =" #ffffff" />
9
+ </Style >
10
+ <Style x : Key =" WindowBorderStyle" BasedOn =" {StaticResource BaseWindowBorderStyle}" TargetType =" {x:Type Border}" >
11
+ <Setter Property =" Background" Value =" #000000" />
12
+ </Style >
13
+ <Style x : Key =" WindowStyle" TargetType =" {x:Type Window}" BasedOn =" {StaticResource BaseWindowStyle}" />
14
+ <Style x : Key =" PendingLineStyle" BasedOn =" {StaticResource BasePendingLineStyle}" TargetType =" {x:Type Line}" />
15
+ <Style x : Key =" ItemTitleStyle" BasedOn =" {StaticResource BaseItemTitleStyle}" TargetType =" {x:Type TextBlock}" >
16
+ <Setter Property =" Foreground" Value =" #FFFFF8" />
17
+ </Style >
18
+ <Style x : Key =" ItemSubTitleStyle" BasedOn =" {StaticResource BaseItemSubTitleStyle}" TargetType =" {x:Type TextBlock}" >
19
+ <Setter Property =" Foreground" Value =" #D9D9D4" />
20
+ </Style >
21
+ <Style x : Key =" ItemTitleSelectedStyle" BasedOn =" {StaticResource BaseItemTitleSelectedStyle}" TargetType =" {x:Type TextBlock}" >
22
+ <Setter Property =" Foreground" Value =" #FFFFF8" />
23
+ </Style >
24
+ <Style x : Key =" ItemSubTitleSelectedStyle" BasedOn =" {StaticResource BaseItemSubTitleSelectedStyle}" TargetType =" {x:Type TextBlock}" >
25
+ <Setter Property =" Foreground" Value =" #D9D9D4" />
26
+ </Style >
27
+ <SolidColorBrush x : Key =" ItemSelectedBackgroundColor" >#4F6180</SolidColorBrush >
28
+ <Style x : Key =" ThumbStyle" BasedOn =" {StaticResource BaseThumbStyle}" TargetType =" {x:Type Thumb}" />
29
+ <Style x : Key =" ScrollBarStyle" BasedOn =" {StaticResource BaseScrollBarStyle}" TargetType =" {x:Type ScrollBar}" />
30
+ </ResourceDictionary >
0 commit comments