|
0
|
1 |
<ResourceDictionary
|
|
|
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:System="clr-namespace:System;assembly=mscorlib">
|
|
|
4 |
<!-- Resource dictionary entries should be defined here. -->
|
|
|
5 |
<ControlTemplate x:Key="ValidationToolTipTemplate">
|
|
|
6 |
<Grid x:Name="Root" Margin="5,0" Opacity="0" RenderTransformOrigin="0,0">
|
|
|
7 |
<VisualStateManager.VisualStateGroups>
|
|
|
8 |
<VisualStateGroup x:Name="OpenStates">
|
|
|
9 |
<VisualStateGroup.Transitions>
|
|
|
10 |
<VisualTransition GeneratedDuration="0"/>
|
|
|
11 |
<VisualTransition GeneratedDuration="0:0:0.2" To="Open">
|
|
|
12 |
<Storyboard>
|
|
|
13 |
<DoubleAnimationUsingKeyFrames Storyboard.TargetName="xform" Storyboard.TargetProperty="X">
|
|
|
14 |
<SplineDoubleKeyFrame KeyTime="0:0:0.2" Value="0"/>
|
|
|
15 |
</DoubleAnimationUsingKeyFrames>
|
|
|
16 |
<DoubleAnimationUsingKeyFrames Storyboard.TargetName="Root" Storyboard.TargetProperty="Opacity">
|
|
|
17 |
<SplineDoubleKeyFrame KeyTime="0:0:0.2" Value="1"/>
|
|
|
18 |
</DoubleAnimationUsingKeyFrames>
|
|
|
19 |
</Storyboard>
|
|
|
20 |
</VisualTransition>
|
|
|
21 |
</VisualStateGroup.Transitions>
|
|
|
22 |
<VisualState x:Name="Closed">
|
|
|
23 |
<Storyboard>
|
|
|
24 |
<DoubleAnimationUsingKeyFrames Storyboard.TargetName="Root" Storyboard.TargetProperty="Opacity">
|
|
|
25 |
<SplineDoubleKeyFrame KeyTime="0" Value="0"/>
|
|
|
26 |
</DoubleAnimationUsingKeyFrames>
|
|
|
27 |
</Storyboard>
|
|
|
28 |
</VisualState>
|
|
|
29 |
<VisualState x:Name="Open">
|
|
|
30 |
<Storyboard>
|
|
|
31 |
<DoubleAnimationUsingKeyFrames Storyboard.TargetName="xform" Storyboard.TargetProperty="X">
|
|
|
32 |
<SplineDoubleKeyFrame KeyTime="0" Value="0"/>
|
|
|
33 |
</DoubleAnimationUsingKeyFrames>
|
|
|
34 |
<DoubleAnimationUsingKeyFrames Storyboard.TargetName="Root" Storyboard.TargetProperty="Opacity">
|
|
|
35 |
<SplineDoubleKeyFrame KeyTime="0" Value="1"/>
|
|
|
36 |
</DoubleAnimationUsingKeyFrames>
|
|
|
37 |
</Storyboard>
|
|
|
38 |
</VisualState>
|
|
|
39 |
</VisualStateGroup>
|
|
|
40 |
</VisualStateManager.VisualStateGroups>
|
|
|
41 |
<Grid.RenderTransform>
|
|
|
42 |
<TranslateTransform x:Name="xform" X="-25"/>
|
|
|
43 |
</Grid.RenderTransform>
|
|
|
44 |
<Border Margin="4,4,-4,-4" Background="#052A2E31" CornerRadius="5"/>
|
|
|
45 |
<Border Margin="3,3,-3,-3" Background="#152A2E31" CornerRadius="4"/>
|
|
|
46 |
<Border Margin="2,2,-2,-2" Background="#252A2E31" CornerRadius="3"/>
|
|
|
47 |
<Border Margin="1,1,-1,-1" Background="#352A2E31" CornerRadius="2"/>
|
|
|
48 |
<Border Background="#FFDC000C" CornerRadius="2"/>
|
|
|
49 |
<Border CornerRadius="2">
|
|
|
50 |
<TextBlock Margin="8,4,8,4" MaxWidth="250" UseLayoutRounding="false" Foreground="White" Text="{Binding (Validation.Errors)[0].ErrorContent}" TextWrapping="Wrap"/>
|
|
|
51 |
</Border>
|
|
|
52 |
</Grid>
|
|
|
53 |
</ControlTemplate>
|
|
|
54 |
<Style x:Key="CheckBox_ConsultMenu" TargetType="CheckBox">
|
|
|
55 |
<Setter Property="Background" Value="#FF448DCA"/>
|
|
|
56 |
<Setter Property="Foreground" Value="White"/>
|
|
|
57 |
<Setter Property="HorizontalContentAlignment" Value="Left"/>
|
|
|
58 |
<Setter Property="VerticalContentAlignment" Value="Top"/>
|
|
|
59 |
<Setter Property="Padding" Value="4,1,0,0"/>
|
|
|
60 |
<Setter Property="BorderThickness" Value="1"/>
|
|
|
61 |
<Setter Property="BorderBrush">
|
|
|
62 |
<Setter.Value>
|
|
|
63 |
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
|
64 |
<GradientStop Color="#FFA3AEB9" Offset="0"/>
|
|
|
65 |
<GradientStop Color="#FF8399A9" Offset="0.375"/>
|
|
|
66 |
<GradientStop Color="#FF718597" Offset="0.375"/>
|
|
|
67 |
<GradientStop Color="#FF617584" Offset="1"/>
|
|
|
68 |
</LinearGradientBrush>
|
|
|
69 |
</Setter.Value>
|
|
|
70 |
</Setter>
|
|
|
71 |
<Setter Property="Template">
|
|
|
72 |
<Setter.Value>
|
|
|
73 |
<ControlTemplate TargetType="CheckBox">
|
|
|
74 |
<Grid>
|
|
|
75 |
<VisualStateManager.VisualStateGroups>
|
|
|
76 |
<VisualStateGroup x:Name="CommonStates">
|
|
|
77 |
<VisualState x:Name="Normal"/>
|
|
|
78 |
<VisualState x:Name="MouseOver">
|
|
|
79 |
<Storyboard>
|
|
|
80 |
<DoubleAnimationUsingKeyFrames Storyboard.TargetName="BackgroundOverlay" Storyboard.TargetProperty="Opacity">
|
|
|
81 |
<SplineDoubleKeyFrame KeyTime="0" Value="1"/>
|
|
|
82 |
</DoubleAnimationUsingKeyFrames>
|
|
|
83 |
<DoubleAnimationUsingKeyFrames Storyboard.TargetName="BoxMiddleBackground" Storyboard.TargetProperty="Opacity">
|
|
|
84 |
<SplineDoubleKeyFrame KeyTime="0" Value="1"/>
|
|
|
85 |
</DoubleAnimationUsingKeyFrames>
|
|
|
86 |
<ColorAnimationUsingKeyFrames Storyboard.TargetName="BoxMiddle" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[3].(GradientStop.Color)">
|
|
|
87 |
<SplineColorKeyFrame KeyTime="0" Value="#7FFFFFFF"/>
|
|
|
88 |
</ColorAnimationUsingKeyFrames>
|
|
|
89 |
<ColorAnimationUsingKeyFrames Storyboard.TargetName="BoxMiddle" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[2].(GradientStop.Color)">
|
|
|
90 |
<SplineColorKeyFrame KeyTime="0" Value="#CCFFFFFF"/>
|
|
|
91 |
</ColorAnimationUsingKeyFrames>
|
|
|
92 |
<ColorAnimationUsingKeyFrames Storyboard.TargetName="BoxMiddle" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)">
|
|
|
93 |
<SplineColorKeyFrame KeyTime="0" Value="#F2FFFFFF"/>
|
|
|
94 |
</ColorAnimationUsingKeyFrames>
|
|
|
95 |
</Storyboard>
|
|
|
96 |
</VisualState>
|
|
|
97 |
<VisualState x:Name="Pressed">
|
|
|
98 |
<Storyboard>
|
|
|
99 |
<DoubleAnimationUsingKeyFrames Storyboard.TargetName="BackgroundOverlay" Storyboard.TargetProperty="Opacity">
|
|
|
100 |
<SplineDoubleKeyFrame KeyTime="0" Value="1"/>
|
|
|
101 |
</DoubleAnimationUsingKeyFrames>
|
|
|
102 |
<DoubleAnimationUsingKeyFrames Storyboard.TargetName="BoxMiddleBackground" Storyboard.TargetProperty="Opacity">
|
|
|
103 |
<SplineDoubleKeyFrame KeyTime="0" Value="1"/>
|
|
|
104 |
</DoubleAnimationUsingKeyFrames>
|
|
|
105 |
<ColorAnimationUsingKeyFrames Storyboard.TargetName="BoxMiddle" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[3].(GradientStop.Color)">
|
|
|
106 |
<SplineColorKeyFrame KeyTime="0" Value="#6BFFFFFF"/>
|
|
|
107 |
</ColorAnimationUsingKeyFrames>
|
|
|
108 |
<ColorAnimationUsingKeyFrames Storyboard.TargetName="BoxMiddle" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[2].(GradientStop.Color)">
|
|
|
109 |
<SplineColorKeyFrame KeyTime="0" Value="#C6FFFFFF"/>
|
|
|
110 |
</ColorAnimationUsingKeyFrames>
|
|
|
111 |
<ColorAnimationUsingKeyFrames Storyboard.TargetName="BoxMiddle" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)">
|
|
|
112 |
<SplineColorKeyFrame KeyTime="0" Value="#EAFFFFFF"/>
|
|
|
113 |
</ColorAnimationUsingKeyFrames>
|
|
|
114 |
<ColorAnimationUsingKeyFrames Storyboard.TargetName="BoxMiddle" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)">
|
|
|
115 |
<SplineColorKeyFrame KeyTime="0" Value="#F4FFFFFF"/>
|
|
|
116 |
</ColorAnimationUsingKeyFrames>
|
|
|
117 |
<ColorAnimationUsingKeyFrames Storyboard.TargetName="BoxMiddle" Storyboard.TargetProperty="(Shape.Stroke).(GradientBrush.GradientStops)[3].(GradientStop.Color)">
|
|
|
118 |
<SplineColorKeyFrame KeyTime="0" Value="#FF6DBDD1"/>
|
|
|
119 |
</ColorAnimationUsingKeyFrames>
|
|
|
120 |
<ColorAnimationUsingKeyFrames Storyboard.TargetName="BoxMiddle" Storyboard.TargetProperty="(Shape.Stroke).(GradientBrush.GradientStops)[0].(GradientStop.Color)">
|
|
|
121 |
<SplineColorKeyFrame KeyTime="0" Value="#FF6DBDD1"/>
|
|
|
122 |
</ColorAnimationUsingKeyFrames>
|
|
|
123 |
<ColorAnimationUsingKeyFrames Storyboard.TargetName="BoxMiddle" Storyboard.TargetProperty="(Shape.Stroke).(GradientBrush.GradientStops)[1].(GradientStop.Color)">
|
|
|
124 |
<SplineColorKeyFrame KeyTime="0" Value="#FF6DBDD1"/>
|
|
|
125 |
</ColorAnimationUsingKeyFrames>
|
|
|
126 |
<ColorAnimationUsingKeyFrames Storyboard.TargetName="BoxMiddle" Storyboard.TargetProperty="(Shape.Stroke).(GradientBrush.GradientStops)[2].(GradientStop.Color)">
|
|
|
127 |
<SplineColorKeyFrame KeyTime="0" Value="#FF6DBDD1"/>
|
|
|
128 |
</ColorAnimationUsingKeyFrames>
|
|
|
129 |
</Storyboard>
|
|
|
130 |
</VisualState>
|
|
|
131 |
<VisualState x:Name="Disabled">
|
|
|
132 |
<Storyboard>
|
|
|
133 |
<DoubleAnimationUsingKeyFrames Storyboard.TargetName="contentPresenter" Storyboard.TargetProperty="(UIElement.Opacity)">
|
|
|
134 |
<SplineDoubleKeyFrame KeyTime="0" Value=".55"/>
|
|
|
135 |
</DoubleAnimationUsingKeyFrames>
|
|
|
136 |
<DoubleAnimationUsingKeyFrames Storyboard.TargetName="DisabledVisualElement" Storyboard.TargetProperty="(UIElement.Opacity)">
|
|
|
137 |
<SplineDoubleKeyFrame KeyTime="0" Value="0.55"/>
|
|
|
138 |
</DoubleAnimationUsingKeyFrames>
|
|
|
139 |
</Storyboard>
|
|
|
140 |
</VisualState>
|
|
|
141 |
</VisualStateGroup>
|
|
|
142 |
<VisualStateGroup x:Name="CheckStates">
|
|
|
143 |
<VisualState x:Name="Checked">
|
|
|
144 |
<Storyboard>
|
|
|
145 |
<DoubleAnimationUsingKeyFrames Storyboard.TargetName="CheckIcon" Storyboard.TargetProperty="(UIElement.Opacity)">
|
|
|
146 |
<SplineDoubleKeyFrame KeyTime="0" Value="1"/>
|
|
|
147 |
</DoubleAnimationUsingKeyFrames>
|
|
|
148 |
</Storyboard>
|
|
|
149 |
</VisualState>
|
|
|
150 |
<VisualState x:Name="Unchecked"/>
|
|
|
151 |
<VisualState x:Name="Indeterminate">
|
|
|
152 |
<Storyboard>
|
|
|
153 |
<DoubleAnimationUsingKeyFrames Storyboard.TargetName="IndeterminateIcon" Storyboard.TargetProperty="(UIElement.Opacity)">
|
|
|
154 |
<SplineDoubleKeyFrame KeyTime="0" Value="1"/>
|
|
|
155 |
</DoubleAnimationUsingKeyFrames>
|
|
|
156 |
</Storyboard>
|
|
|
157 |
</VisualState>
|
|
|
158 |
</VisualStateGroup>
|
|
|
159 |
<VisualStateGroup x:Name="FocusStates">
|
|
|
160 |
<VisualState x:Name="Focused">
|
|
|
161 |
<Storyboard>
|
|
|
162 |
<DoubleAnimationUsingKeyFrames Storyboard.TargetName="ContentFocusVisualElement" Storyboard.TargetProperty="Opacity">
|
|
|
163 |
<SplineDoubleKeyFrame KeyTime="0" Value="1"/>
|
|
|
164 |
</DoubleAnimationUsingKeyFrames>
|
|
|
165 |
</Storyboard>
|
|
|
166 |
</VisualState>
|
|
|
167 |
<VisualState x:Name="Unfocused"/>
|
|
|
168 |
</VisualStateGroup>
|
|
|
169 |
<VisualStateGroup x:Name="ValidationStates">
|
|
|
170 |
<VisualState x:Name="Valid"/>
|
|
|
171 |
<VisualState x:Name="InvalidUnfocused">
|
|
|
172 |
<Storyboard>
|
|
|
173 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="ValidationErrorElement" Storyboard.TargetProperty="Visibility">
|
|
|
174 |
<DiscreteObjectKeyFrame KeyTime="0">
|
|
|
175 |
<DiscreteObjectKeyFrame.Value>
|
|
|
176 |
<Visibility>Visible</Visibility>
|
|
|
177 |
</DiscreteObjectKeyFrame.Value>
|
|
|
178 |
</DiscreteObjectKeyFrame>
|
|
|
179 |
</ObjectAnimationUsingKeyFrames>
|
|
|
180 |
</Storyboard>
|
|
|
181 |
</VisualState>
|
|
|
182 |
<VisualState x:Name="InvalidFocused">
|
|
|
183 |
<Storyboard>
|
|
|
184 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="ValidationErrorElement" Storyboard.TargetProperty="Visibility">
|
|
|
185 |
<DiscreteObjectKeyFrame KeyTime="0">
|
|
|
186 |
<DiscreteObjectKeyFrame.Value>
|
|
|
187 |
<Visibility>Visible</Visibility>
|
|
|
188 |
</DiscreteObjectKeyFrame.Value>
|
|
|
189 |
</DiscreteObjectKeyFrame>
|
|
|
190 |
</ObjectAnimationUsingKeyFrames>
|
|
|
191 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="validationTooltip" Storyboard.TargetProperty="IsOpen">
|
|
|
192 |
<DiscreteObjectKeyFrame KeyTime="0">
|
|
|
193 |
<DiscreteObjectKeyFrame.Value>
|
|
|
194 |
<System:Boolean>True</System:Boolean>
|
|
|
195 |
</DiscreteObjectKeyFrame.Value>
|
|
|
196 |
</DiscreteObjectKeyFrame>
|
|
|
197 |
</ObjectAnimationUsingKeyFrames>
|
|
|
198 |
</Storyboard>
|
|
|
199 |
</VisualState>
|
|
|
200 |
</VisualStateGroup>
|
|
|
201 |
</VisualStateManager.VisualStateGroups>
|
|
|
202 |
<Grid.ColumnDefinitions>
|
|
|
203 |
<ColumnDefinition Width="16"/>
|
|
|
204 |
<ColumnDefinition Width="*"/>
|
|
|
205 |
</Grid.ColumnDefinitions>
|
|
|
206 |
<Grid HorizontalAlignment="Left" VerticalAlignment="Top">
|
|
|
207 |
<Rectangle x:Name="Background" Fill="#FFFFFFFF" Stroke="{TemplateBinding BorderBrush}" StrokeThickness="{TemplateBinding BorderThickness}" RadiusX="1" RadiusY="1" Height="14" Margin="1" Width="14"/>
|
|
|
208 |
<Rectangle x:Name="BackgroundOverlay" Fill="#FFC4DBEE" Stroke="#00000000" StrokeThickness="1" RadiusX="1" RadiusY="1" Height="14" Margin="1" Width="14" Opacity="0"/>
|
|
|
209 |
<Rectangle x:Name="BoxMiddleBackground" Fill="{TemplateBinding Background}" Stroke="#00000000" StrokeThickness="1" RadiusX="1" RadiusY="1" Height="10" Width="10"/>
|
|
|
210 |
<Rectangle x:Name="BoxMiddle" StrokeThickness="1" RadiusX="1" RadiusY="1" Height="10" Width="10">
|
|
|
211 |
<Rectangle.Stroke>
|
|
|
212 |
<LinearGradientBrush EndPoint=".5,1" StartPoint=".5,0">
|
|
|
213 |
<GradientStop Color="#FFFFFFFF" Offset="1"/>
|
|
|
214 |
<GradientStop Color="#FFFFFFFF" Offset="0"/>
|
|
|
215 |
<GradientStop Color="#FFFFFFFF" Offset="0.375"/>
|
|
|
216 |
<GradientStop Color="#FFFFFFFF" Offset="0.375"/>
|
|
|
217 |
</LinearGradientBrush>
|
|
|
218 |
</Rectangle.Stroke>
|
|
|
219 |
<Rectangle.Fill>
|
|
|
220 |
<LinearGradientBrush EndPoint="0.64,0.88" StartPoint="0.62,0.15">
|
|
|
221 |
<GradientStop Color="#FFFFFFFF" Offset="0.013"/>
|
|
|
222 |
<GradientStop Color="#F9FFFFFF" Offset="0.375"/>
|
|
|
223 |
<GradientStop Color="#EAFFFFFF" Offset="0.603"/>
|
|
|
224 |
<GradientStop Color="#D8FFFFFF" Offset="1"/>
|
|
|
225 |
</LinearGradientBrush>
|
|
|
226 |
</Rectangle.Fill>
|
|
|
227 |
</Rectangle>
|
|
|
228 |
<Rectangle x:Name="BoxMiddleLine" Stroke="{TemplateBinding BorderBrush}" StrokeThickness="1" RadiusX="1" RadiusY="1" Height="10" Width="10" Opacity=".2"/>
|
|
|
229 |
<Path x:Name="CheckIcon" Fill="#FF333333" Stretch="Fill" Height="10" Margin="1,1,0,1.5" Width="10.5" Opacity="0" Data="M102.03442,598.79645 L105.22962,597.78918 L106.78825,600.42358 C106.78825,600.42358 108.51028,595.74304 110.21724,593.60419 C112.00967,591.35822 114.89314,591.42316 114.89314,591.42316 C114.89314,591.42316 112.67844,593.42645 111.93174,594.44464 C110.7449,596.06293 107.15683,604.13837 107.15683,604.13837 z"/>
|
|
|
230 |
<Rectangle x:Name="IndeterminateIcon" Fill="#FF333333" Height="2" Width="6" Opacity="0"/>
|
|
|
231 |
<Rectangle x:Name="DisabledVisualElement" Fill="#FFFFFFFF" RadiusX="1" RadiusY="1" Height="14" Width="14" Opacity="0"/>
|
|
|
232 |
<Rectangle x:Name="ContentFocusVisualElement" Stroke="#FF6DBDD1" StrokeThickness="1" RadiusX="2" RadiusY="2" Height="16" Width="16" IsHitTestVisible="false" Opacity="0"/>
|
|
|
233 |
<Border x:Name="ValidationErrorElement" Margin="1" Visibility="Collapsed" BorderBrush="#FFDB000C" BorderThickness="1" CornerRadius="1" ToolTipService.PlacementTarget="{Binding RelativeSource={RelativeSource TemplatedParent}}">
|
|
|
234 |
<ToolTipService.ToolTip>
|
|
|
235 |
<ToolTip x:Name="validationTooltip" Template="{StaticResource ValidationToolTipTemplate}" DataContext="{Binding RelativeSource={RelativeSource TemplatedParent}}" Placement="Right" PlacementTarget="{Binding RelativeSource={RelativeSource TemplatedParent}}">
|
|
|
236 |
<ToolTip.Triggers>
|
|
|
237 |
<EventTrigger RoutedEvent="Canvas.Loaded">
|
|
|
238 |
<BeginStoryboard>
|
|
|
239 |
<Storyboard>
|
|
|
240 |
<ObjectAnimationUsingKeyFrames Storyboard.TargetName="validationTooltip" Storyboard.TargetProperty="IsHitTestVisible">
|
|
|
241 |
<DiscreteObjectKeyFrame KeyTime="0">
|
|
|
242 |
<DiscreteObjectKeyFrame.Value>
|
|
|
243 |
<System:Boolean>true</System:Boolean>
|
|
|
244 |
</DiscreteObjectKeyFrame.Value>
|
|
|
245 |
</DiscreteObjectKeyFrame>
|
|
|
246 |
</ObjectAnimationUsingKeyFrames>
|
|
|
247 |
</Storyboard>
|
|
|
248 |
</BeginStoryboard>
|
|
|
249 |
</EventTrigger>
|
|
|
250 |
</ToolTip.Triggers>
|
|
|
251 |
</ToolTip>
|
|
|
252 |
</ToolTipService.ToolTip>
|
|
|
253 |
<Grid Height="10" HorizontalAlignment="Right" Margin="0,-4,-4,0" VerticalAlignment="Top" Width="10" Background="Transparent">
|
|
|
254 |
<Path Fill="#FFDC000C" Margin="0,3,0,0" Data="M 1,0 L5,0 A 2,2 90 0 1 7,2 L7,6 z"/>
|
|
|
255 |
<Path Fill="#ffffff" Margin="0,3,0,0" Data="M 0,0 L2,0 L 7,5 L7,7"/>
|
|
|
256 |
</Grid>
|
|
|
257 |
</Border>
|
|
|
258 |
</Grid>
|
|
|
259 |
<ContentPresenter x:Name="contentPresenter" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" Margin="{TemplateBinding Padding}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" Grid.Column="1" Content="{TemplateBinding Content}" ContentTemplate="{TemplateBinding ContentTemplate}"/>
|
|
|
260 |
</Grid>
|
|
|
261 |
</ControlTemplate>
|
|
|
262 |
</Setter.Value>
|
|
|
263 |
</Setter>
|
|
|
264 |
</Style>
|
|
|
265 |
</ResourceDictionary> |