|
64 | 64 | Stretch="Fill">
|
65 | 65 | <Path.Fill>
|
66 | 66 | <MultiBinding Converter="{StaticResource BooleanToChoiceConverter}">
|
67 |
| - <Binding RelativeSource="{RelativeSource FindAncestor, AncestorType=Window}" Path="IsActive" /> |
68 |
| - <Binding Source="{StaticResource ControlForegroundAccentHighBrush}" /> |
| 67 | + <Binding RelativeSource="{RelativeSource FindAncestor, AncestorType=Window}" Path="IsActive" |
| 68 | + Converter="{x:Static BoolConverters.Not}" /> |
69 | 69 | <Binding Source="{StaticResource ControlForegroundAccentInactiveHighBrush}" />
|
| 70 | + <Binding Source="{StaticResource ControlForegroundAccentHighBrush}" /> |
70 | 71 | </MultiBinding>
|
71 | 72 | </Path.Fill>
|
72 | 73 | </Path>
|
|
79 | 80 | Stretch="Uniform">
|
80 | 81 | <Rectangle.Fill>
|
81 | 82 | <MultiBinding Converter="{StaticResource BooleanToChoiceConverter}">
|
82 |
| - <Binding RelativeSource="{RelativeSource FindAncestor, AncestorType=Window}" Path="IsActive" /> |
83 |
| - <Binding Source="{StaticResource ControlForegroundAccentHighBrush}" /> |
| 83 | + <Binding RelativeSource="{RelativeSource FindAncestor, AncestorType=Window}" Path="IsActive" |
| 84 | + Converter="{x:Static BoolConverters.Not}" /> |
84 | 85 | <Binding Source="{StaticResource ControlForegroundAccentInactiveHighBrush}" />
|
| 86 | + <Binding Source="{StaticResource ControlForegroundAccentHighBrush}" /> |
85 | 87 | </MultiBinding>
|
86 | 88 | </Rectangle.Fill>
|
87 | 89 | </Rectangle>
|
|
112 | 114 | <Setter Property="Background">
|
113 | 115 | <Setter.Value>
|
114 | 116 | <MultiBinding Converter="{StaticResource BooleanToChoiceConverter}">
|
115 |
| - <Binding RelativeSource="{RelativeSource FindAncestor, AncestorType=Window}" Path="IsActive" /> |
116 |
| - <Binding Source="{StaticResource ControlBackgroundAccentRaisedBrush}" /> |
| 117 | + <Binding RelativeSource="{RelativeSource FindAncestor, AncestorType=Window}" Path="IsActive" |
| 118 | + Converter="{x:Static BoolConverters.Not}" /> |
117 | 119 | <Binding Source="{StaticResource ControlBackgroundHighBrush}" />
|
| 120 | + <Binding Source="{StaticResource ControlBackgroundAccentRaisedBrush}" /> |
118 | 121 | </MultiBinding>
|
119 | 122 | </Setter.Value>
|
120 | 123 | </Setter>
|
121 | 124 | <Style Selector="^/template/ Border#border">
|
122 | 125 | <Setter Property="BorderBrush">
|
123 | 126 | <Setter.Value>
|
124 | 127 | <MultiBinding Converter="{StaticResource BooleanToChoiceConverter}">
|
125 |
| - <Binding RelativeSource="{RelativeSource FindAncestor, AncestorType=Window}" Path="IsActive" /> |
126 |
| - <Binding Source="{StaticResource ControlBorderAccentBrush}" /> |
| 128 | + <Binding RelativeSource="{RelativeSource FindAncestor, AncestorType=Window}" Path="IsActive" |
| 129 | + Converter="{x:Static BoolConverters.Not}" /> |
127 | 130 | <Binding Source="{StaticResource ControlBorderBrush}" />
|
| 131 | + <Binding Source="{StaticResource ControlBorderAccentBrush}" /> |
128 | 132 | </MultiBinding>
|
129 | 133 | </Setter.Value>
|
130 | 134 | </Setter>
|
|
138 | 142 | <Setter Property="Background">
|
139 | 143 | <Setter.Value>
|
140 | 144 | <MultiBinding Converter="{StaticResource BooleanToChoiceConverter}">
|
141 |
| - <Binding RelativeSource="{RelativeSource FindAncestor, AncestorType=Window}" Path="IsActive" /> |
142 |
| - <Binding Source="{StaticResource ControlBackgroundAccentRaisedBrush}" /> |
| 145 | + <Binding RelativeSource="{RelativeSource FindAncestor, AncestorType=Window}" Path="IsActive" |
| 146 | + Converter="{x:Static BoolConverters.Not}" /> |
143 | 147 | <Binding Source="{StaticResource ControlBackgroundHighBrush}" />
|
| 148 | + <Binding Source="{StaticResource ControlBackgroundAccentRaisedBrush}" /> |
144 | 149 | </MultiBinding>
|
145 | 150 | </Setter.Value>
|
146 | 151 | </Setter>
|
147 | 152 | <Style Selector="^/template/ Border#border">
|
148 | 153 | <Setter Property="BorderBrush">
|
149 | 154 | <Setter.Value>
|
150 | 155 | <MultiBinding Converter="{StaticResource BooleanToChoiceConverter}">
|
151 |
| - <Binding RelativeSource="{RelativeSource FindAncestor, AncestorType=Window}" Path="IsActive" /> |
152 |
| - <Binding Source="{StaticResource ControlBorderAccentBrush}" /> |
| 156 | + <Binding RelativeSource="{RelativeSource FindAncestor, AncestorType=Window}" Path="IsActive" |
| 157 | + Converter="{x:Static BoolConverters.Not}" /> |
153 | 158 | <Binding Source="{StaticResource ControlBorderBrush}" />
|
| 159 | + <Binding Source="{StaticResource ControlBorderAccentBrush}" /> |
154 | 160 | </MultiBinding>
|
155 | 161 | </Setter.Value>
|
156 | 162 | </Setter>
|
|
0 commit comments