author | cavaliet |
Tue, 24 Nov 2009 12:57:18 +0100 | |
changeset 226 | c0661ecf943e |
parent 175 | 1d4b6d6474d5 |
permissions | -rw-r--r-- |
10 | 1 |
<UserControl |
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
|
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
|
4 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
|
5 |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
|
6 |
mc:Ignorable="d" |
|
92 | 7 |
xmlns:vw="clr-namespace:FingersDance.Views;assembly=FingersDance.Views" |
140
fc7c12f9da30
Add a confirm dialog box before deleting an annotation by drag and drop. Now the UserControlClose is a generic confirm dialog box sending a ConfirmYesOrNo Event.
cavaliet
parents:
126
diff
changeset
|
8 |
xmlns:popup="clr-namespace:FingersDance.Control.Close;assembly=FingersDance.Control.Close" |
92 | 9 |
xmlns:Custom="http://schemas.microsoft.com/surface/2008" xmlns:Microsoft_Surface_Presentation_Generic="clr-namespace:Microsoft.Surface.Presentation.Generic;assembly=Microsoft.Surface.Presentation.Generic" |
10 | 10 |
x:Class="FingersDance.Control.TimeLine.UserControlTimeLine" |
11 |
x:Name="UserControl" |
|
92 | 12 |
d:DesignWidth="383" Background="{x:Null}" d:DesignHeight="33"> |
13 |
||
146 | 14 |
<UserControl.Resources> |
15 |
<Style x:Key="FingersDance.Control.Slider" TargetType="{x:Type Custom:SurfaceSlider}"> |
|
16 |
<Setter Property="Background" Value="#191B2022"/> |
|
17 |
<Setter Property="BorderBrush" Value="#3F040404"/> |
|
18 |
<Setter Property="Foreground" Value="Black"/> |
|
19 |
<Setter Property="Width" Value="NaN"/> |
|
20 |
<Setter Property="MinWidth" Value="30"/> |
|
21 |
<Setter Property="Height" Value="NaN"/> |
|
22 |
<Setter Property="MinHeight" Value="30"/> |
|
23 |
<Setter Property="Template"> |
|
24 |
<Setter.Value> |
|
25 |
<ControlTemplate TargetType="{x:Type Custom:SurfaceSlider}"> |
|
26 |
<ControlTemplate.Resources> |
|
27 |
<Storyboard x:Key="Touch"> |
|
28 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Height" To="19"/> |
|
29 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX" To="9"/> |
|
30 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY" To="9"/> |
|
31 |
</Storyboard> |
|
32 |
<Storyboard x:Key="Release"> |
|
33 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Height"/> |
|
34 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX"/> |
|
35 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY"/> |
|
36 |
</Storyboard> |
|
37 |
</ControlTemplate.Resources> |
|
38 |
<Grid x:Name="GridRoot" VerticalAlignment="Stretch" Height="Auto" SnapsToDevicePixels="True" Background="Transparent"> |
|
39 |
<Grid.RowDefinitions> |
|
40 |
<RowDefinition Height="Auto"/> |
|
41 |
<RowDefinition Height="Auto" MinHeight="{TemplateBinding MinHeight}"/> |
|
42 |
<RowDefinition Height="Auto"/> |
|
43 |
</Grid.RowDefinitions> |
|
44 |
<Canvas ClipToBounds="False"> |
|
45 |
<Label x:Name="PART_SurfaceToolTip"> |
|
46 |
<Label.Style> |
|
47 |
<Style TargetType="{x:Type Label}"> |
|
48 |
<Setter Property="Template"> |
|
49 |
<Setter.Value> |
|
50 |
<ControlTemplate TargetType="{x:Type Label}"> |
|
51 |
<Grid> |
|
52 |
<Border HorizontalAlignment="Stretch" Margin="0" Width="Auto" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="1" CornerRadius="2"> |
|
53 |
<TextBlock Margin="{TemplateBinding Padding}" Background="{x:Null}" Foreground="{TemplateBinding Foreground}" Text="{TemplateBinding Content}"/> |
|
92 | 54 |
</Border> |
146 | 55 |
</Grid> |
56 |
</ControlTemplate> |
|
57 |
</Setter.Value> |
|
58 |
</Setter> |
|
59 |
<Setter Property="Visibility" Value="Collapsed"/> |
|
60 |
<Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.InfoBrushKey}}"/> |
|
61 |
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.InfoTextBrushKey}}"/> |
|
62 |
<Setter Property="BorderBrush" Value="{DynamicResource {x:Static SystemColors.InfoTextBrushKey}}"/> |
|
63 |
<Setter Property="Padding" Value="2"/> |
|
64 |
</Style> |
|
65 |
</Label.Style> |
|
66 |
</Label> |
|
67 |
</Canvas> |
|
68 |
<TickBar x:Name="TopTick" Margin="0,0,0,1" Height="4" Opacity="1" SnapsToDevicePixels="True" Visibility="Collapsed" Grid.Row="0" Fill="{TemplateBinding BorderBrush}" IsDirectionReversed="False" Placement="Top" ReservedSpace="30"/> |
|
69 |
<TickBar x:Name="BottomTick" Margin="0,1,0,0" Height="4" Opacity="1" SnapsToDevicePixels="True" Visibility="Collapsed" Grid.Row="2" Fill="{TemplateBinding BorderBrush}" Placement="Bottom" ReservedSpace="30"/> |
|
70 |
<Rectangle x:Name="TrackBkgd" RadiusX="3" RadiusY="3" HorizontalAlignment="Stretch" VerticalAlignment="Center" Width="Auto" Height="3" Opacity="1" SnapsToDevicePixels="True" Grid.Row="1" Fill="#FFF8EDED" Stroke="{x:Null}"/> |
|
71 |
<Ellipse Fill="White" Stroke="{x:Null}" HorizontalAlignment="Left" Margin="0,10.116,0,10.128" Width="12.078" Grid.Row="1" x:Name="ellipseDebut"/> |
|
72 |
<Ellipse Fill="White" Stroke="{x:Null}" HorizontalAlignment="Left" Margin="0,10.116,0,10.128" Width="12.078" Grid.Row="1" x:Name="ellipseFin" RenderTransformOrigin="0.5,0.5"> |
|
73 |
<Ellipse.RenderTransform> |
|
74 |
<TransformGroup> |
|
75 |
<ScaleTransform ScaleX="1" ScaleY="1"/> |
|
76 |
<SkewTransform AngleX="0" AngleY="0"/> |
|
77 |
<RotateTransform Angle="0"/> |
|
78 |
<TranslateTransform X="{Binding Path=ActualWidth, ElementName=TrackBkgd, Mode=Default}" Y="0"/> |
|
79 |
</TransformGroup> |
|
80 |
</Ellipse.RenderTransform> |
|
81 |
</Ellipse> |
|
82 |
<Border x:Name="Track" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Height="Auto" Opacity="1" SnapsToDevicePixels="True" Background="Transparent" Grid.Row="1"> |
|
83 |
<Custom:SurfaceTrack x:Name="PART_Track" Grid.Row="1"> |
|
84 |
<Custom:SurfaceTrack.Thumb> |
|
85 |
<Custom:SurfaceThumb x:Name="Thumb" MinHeight="30" MinWidth="30" Width="30" Height="30" Foreground="Black" SnapsToDevicePixels="True" Background="{DynamicResource SliderPlay_xaml}" Margin="-5.072,0,5.048,0" BorderBrush="{x:Null}"> |
|
86 |
<Custom:SurfaceThumb.Style> |
|
87 |
<Style TargetType="{x:Type Custom:SurfaceThumb}"> |
|
88 |
<Setter Property="Background" Value="Transparent"/> |
|
89 |
<Setter Property="Custom:ContactVisualizer.Adapter"> |
|
90 |
<Setter.Value> |
|
91 |
<Custom:ContactVisualizerRectangleAdapter RadiusX="15" RadiusY="15"/> |
|
92 |
</Setter.Value> |
|
93 |
</Setter> |
|
94 |
<Setter Property="Template"> |
|
95 |
<Setter.Value> |
|
96 |
<ControlTemplate TargetType="{x:Type Custom:SurfaceThumb}"> |
|
97 |
<ControlTemplate.Resources> |
|
98 |
<Storyboard x:Key="Press"> |
|
99 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
100 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> |
|
101 |
</DoubleAnimationUsingKeyFrames> |
|
102 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
103 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
104 |
</ThicknessAnimationUsingKeyFrames> |
|
105 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
106 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
107 |
</ThicknessAnimationUsingKeyFrames> |
|
108 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
109 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
110 |
</ThicknessAnimationUsingKeyFrames> |
|
111 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
112 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
113 |
</ThicknessAnimationUsingKeyFrames> |
|
114 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
115 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
116 |
</DoubleAnimationUsingKeyFrames> |
|
117 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
118 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
119 |
</DoubleAnimationUsingKeyFrames> |
|
120 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
121 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
122 |
</DoubleAnimationUsingKeyFrames> |
|
123 |
</Storyboard> |
|
124 |
<Storyboard x:Key="Release"> |
|
125 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
126 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> |
|
127 |
<SplineDoubleKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="0"/> |
|
128 |
</DoubleAnimationUsingKeyFrames> |
|
129 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
130 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
|
131 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="2"/> |
|
132 |
</ThicknessAnimationUsingKeyFrames> |
|
133 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
134 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
|
135 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="5"/> |
|
136 |
</ThicknessAnimationUsingKeyFrames> |
|
137 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
138 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
|
139 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="5"/> |
|
140 |
</ThicknessAnimationUsingKeyFrames> |
|
141 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
142 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
|
143 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="6"/> |
|
144 |
</ThicknessAnimationUsingKeyFrames> |
|
145 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
146 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> |
|
147 |
<SplineDoubleKeyFrame KeyTime="00:00:00.5000000" Value="1"/> |
|
148 |
</DoubleAnimationUsingKeyFrames> |
|
149 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
150 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> |
|
151 |
<SplineDoubleKeyFrame KeyTime="00:00:00.5000000" Value="1"/> |
|
152 |
</DoubleAnimationUsingKeyFrames> |
|
153 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
154 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> |
|
155 |
<SplineDoubleKeyFrame KeyTime="00:00:00.5000000" Value="1"/> |
|
156 |
</DoubleAnimationUsingKeyFrames> |
|
157 |
</Storyboard> |
|
158 |
</ControlTemplate.Resources> |
|
159 |
<Grid x:Name="Grid" Margin="1" SnapsToDevicePixels="True" Background="Transparent"> |
|
160 |
<Rectangle x:Name="Base" Fill="{TemplateBinding Background}" Stroke="{x:Null}" StrokeThickness="0" RadiusX="15" RadiusY="15" HorizontalAlignment="Stretch" Margin="5" VerticalAlignment="Stretch" Width="Auto" Height="Auto" SnapsToDevicePixels="True"/> |
|
161 |
<Rectangle x:Name="Button" Fill="{x:Null}" RadiusX="15" RadiusY="15" HorizontalAlignment="Stretch" Margin="5" VerticalAlignment="Stretch" Width="Auto" Height="Auto" SnapsToDevicePixels="True" Stroke="{x:Null}"/> |
|
162 |
<Rectangle x:Name="RenderOverlay" StrokeThickness="1" RadiusX="15" RadiusY="15" HorizontalAlignment="Stretch" Margin="6" VerticalAlignment="Stretch" Width="Auto" Height="Auto" Opacity="1" SnapsToDevicePixels="True" Fill="{x:Null}" Stroke="{x:Null}"/> |
|
163 |
<Microsoft_Surface_Presentation_Generic:SurfaceShadowChrome x:Name="GlowBorder" HorizontalAlignment="Stretch" Margin="2" VerticalAlignment="Stretch" Width="Auto" Height="Auto" Opacity="0" Color="White" CornerRadius="{Binding ActualHeight, ElementName=GlowBorder}"/> |
|
164 |
<Rectangle x:Name="Contact" Fill="Transparent" Stroke="{x:Null}"/> |
|
165 | 165 |
<Rectangle x:Name="PauseSymbol" Fill="{DynamicResource Play_xaml}" Stroke="{x:Null}" RenderTransformOrigin="0.5,0.5" Margin="0,-4.435,0.676,11.231" HorizontalAlignment="Right" Width="12.393" Visibility="Collapsed"> |
166 |
<Rectangle.RenderTransform> |
|
167 |
<TransformGroup> |
|
168 |
<ScaleTransform/> |
|
169 |
<SkewTransform/> |
|
170 |
<RotateTransform Angle="89.649"/> |
|
171 |
<TranslateTransform/> |
|
172 |
</TransformGroup> |
|
173 |
</Rectangle.RenderTransform> |
|
174 |
</Rectangle> |
|
146 | 175 |
</Grid> |
176 |
<ControlTemplate.Triggers> |
|
177 |
<Trigger Property="IsFocused" Value="True"/> |
|
178 |
<Trigger Property="IsEnabled" Value="False"> |
|
179 |
<Setter Property="Fill" TargetName="Button" Value="#00000000"/> |
|
180 |
<Setter Property="Fill" TargetName="RenderOverlay" Value="#00000000"/> |
|
181 |
<Setter Property="Stroke" TargetName="Button" Value="#33000000"/> |
|
182 |
<Setter Property="Opacity" TargetName="RenderOverlay" Value="0.5"/> |
|
183 |
</Trigger> |
|
184 |
<Trigger Property="IsDragging" Value="True"> |
|
185 |
<Trigger.EnterActions> |
|
186 |
<BeginStoryboard> |
|
187 |
<Storyboard> |
|
188 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
189 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> |
|
190 |
</DoubleAnimationUsingKeyFrames> |
|
191 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
192 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
193 |
</ThicknessAnimationUsingKeyFrames> |
|
194 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
195 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
196 |
</ThicknessAnimationUsingKeyFrames> |
|
197 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
198 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
199 |
</ThicknessAnimationUsingKeyFrames> |
|
200 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
201 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
202 |
</ThicknessAnimationUsingKeyFrames> |
|
203 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
204 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
205 |
</DoubleAnimationUsingKeyFrames> |
|
206 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
207 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
208 |
</DoubleAnimationUsingKeyFrames> |
|
209 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
210 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
211 |
</DoubleAnimationUsingKeyFrames> |
|
212 |
</Storyboard> |
|
213 |
</BeginStoryboard> |
|
214 |
</Trigger.EnterActions> |
|
215 |
<Trigger.ExitActions> |
|
216 |
<BeginStoryboard> |
|
217 |
<Storyboard> |
|
218 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
219 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> |
|
220 |
<SplineDoubleKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="0"/> |
|
221 |
</DoubleAnimationUsingKeyFrames> |
|
222 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
223 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
|
224 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="2"/> |
|
225 |
</ThicknessAnimationUsingKeyFrames> |
|
226 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
227 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
|
228 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="5"/> |
|
229 |
</ThicknessAnimationUsingKeyFrames> |
|
230 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
231 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
|
232 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="5"/> |
|
233 |
</ThicknessAnimationUsingKeyFrames> |
|
234 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
235 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
|
236 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="6"/> |
|
237 |
</ThicknessAnimationUsingKeyFrames> |
|
238 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
239 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> |
|
240 |
<SplineDoubleKeyFrame KeyTime="00:00:00.5000000" Value="1"/> |
|
241 |
</DoubleAnimationUsingKeyFrames> |
|
242 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
243 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> |
|
244 |
<SplineDoubleKeyFrame KeyTime="00:00:00.5000000" Value="1"/> |
|
245 |
</DoubleAnimationUsingKeyFrames> |
|
246 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
247 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> |
|
248 |
<SplineDoubleKeyFrame KeyTime="00:00:00.5000000" Value="1"/> |
|
249 |
</DoubleAnimationUsingKeyFrames> |
|
250 |
</Storyboard> |
|
251 |
</BeginStoryboard> |
|
252 |
</Trigger.ExitActions> |
|
253 |
</Trigger> |
|
254 |
</ControlTemplate.Triggers> |
|
255 |
</ControlTemplate> |
|
256 |
</Setter.Value> |
|
257 |
</Setter> |
|
258 |
</Style> |
|
259 |
</Custom:SurfaceThumb.Style> |
|
260 |
</Custom:SurfaceThumb> |
|
261 |
</Custom:SurfaceTrack.Thumb> |
|
262 |
<Custom:SurfaceTrack.IncreaseRepeatButton> |
|
263 |
<Custom:SurfaceRepeatButton x:Name="SliderIncrease" Command="Slider.IncreaseLarge"> |
|
264 |
<Custom:SurfaceRepeatButton.Style> |
|
265 |
<Style TargetType="{x:Type Custom:SurfaceRepeatButton}"> |
|
266 |
<Setter Property="Background" Value="Transparent"/> |
|
267 |
<Setter Property="BorderBrush" Value="Transparent"/> |
|
268 |
<Setter Property="IsTabStop" Value="False"/> |
|
269 |
<Setter Property="Focusable" Value="False"/> |
|
270 |
<Setter Property="Template"> |
|
271 |
<Setter.Value> |
|
272 |
<ControlTemplate TargetType="{x:Type Custom:SurfaceRepeatButton}"> |
|
273 |
<Grid> |
|
274 |
<Rectangle Fill="{TemplateBinding Background}" Stroke="{TemplateBinding BorderBrush}" StrokeThickness="{TemplateBinding BorderThickness}"/> |
|
275 |
</Grid> |
|
276 |
</ControlTemplate> |
|
277 |
</Setter.Value> |
|
278 |
</Setter> |
|
279 |
</Style> |
|
280 |
</Custom:SurfaceRepeatButton.Style> |
|
281 |
</Custom:SurfaceRepeatButton> |
|
282 |
</Custom:SurfaceTrack.IncreaseRepeatButton> |
|
283 |
<Custom:SurfaceTrack.DecreaseRepeatButton> |
|
284 |
<Custom:SurfaceRepeatButton x:Name="SliderDecrease" Command="Slider.DecreaseLarge"> |
|
285 |
<Custom:SurfaceRepeatButton.Style> |
|
286 |
<Style TargetType="{x:Type Custom:SurfaceRepeatButton}"> |
|
287 |
<Setter Property="Background" Value="Transparent"/> |
|
288 |
<Setter Property="BorderBrush" Value="Transparent"/> |
|
289 |
<Setter Property="IsTabStop" Value="False"/> |
|
290 |
<Setter Property="Focusable" Value="False"/> |
|
291 |
<Setter Property="Template"> |
|
292 |
<Setter.Value> |
|
293 |
<ControlTemplate TargetType="{x:Type Custom:SurfaceRepeatButton}"> |
|
294 |
<Grid> |
|
295 |
<Rectangle Fill="{TemplateBinding Background}" Stroke="{TemplateBinding BorderBrush}" StrokeThickness="{TemplateBinding BorderThickness}"/> |
|
296 |
</Grid> |
|
297 |
</ControlTemplate> |
|
298 |
</Setter.Value> |
|
299 |
</Setter> |
|
300 |
</Style> |
|
301 |
</Custom:SurfaceRepeatButton.Style> |
|
302 |
</Custom:SurfaceRepeatButton> |
|
303 |
</Custom:SurfaceTrack.DecreaseRepeatButton> |
|
304 |
</Custom:SurfaceTrack> |
|
305 |
</Border> |
|
306 |
</Grid> |
|
307 |
<ControlTemplate.Triggers> |
|
308 |
<Trigger Property="TickPlacement" Value="TopLeft"> |
|
309 |
<Setter Property="Visibility" TargetName="TopTick" Value="Visible"/> |
|
310 |
</Trigger> |
|
311 |
<Trigger Property="TickPlacement" Value="BottomRight"> |
|
312 |
<Setter Property="Visibility" TargetName="BottomTick" Value="Visible"/> |
|
313 |
</Trigger> |
|
314 |
<Trigger Property="TickPlacement" Value="Both"> |
|
315 |
<Setter Property="Visibility" TargetName="TopTick" Value="Visible"/> |
|
316 |
<Setter Property="Visibility" TargetName="BottomTick" Value="Visible"/> |
|
317 |
</Trigger> |
|
318 |
<Trigger Property="IsMoveToPointEnabled" Value="True"> |
|
319 |
<Setter Property="Visibility" TargetName="SliderIncrease" Value="Collapsed"/> |
|
320 |
<Setter Property="Visibility" TargetName="SliderDecrease" Value="Collapsed"/> |
|
321 |
</Trigger> |
|
322 |
<Trigger Property="Custom:Contacts.IsAnyContactOrMouseCapturedWithin" SourceName="SliderIncrease" Value="True"> |
|
323 |
<Trigger.EnterActions> |
|
324 |
<BeginStoryboard> |
|
325 |
<Storyboard> |
|
326 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Height" To="19"/> |
|
327 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX" To="9"/> |
|
328 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY" To="9"/> |
|
329 |
</Storyboard> |
|
330 |
</BeginStoryboard> |
|
331 |
</Trigger.EnterActions> |
|
332 |
<Trigger.ExitActions> |
|
333 |
<BeginStoryboard> |
|
334 |
<Storyboard> |
|
335 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Height"/> |
|
336 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX"/> |
|
337 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY"/> |
|
338 |
</Storyboard> |
|
339 |
</BeginStoryboard> |
|
340 |
</Trigger.ExitActions> |
|
341 |
<Setter Property="Fill" TargetName="TrackBkgd" Value="#661B2022"/> |
|
342 |
</Trigger> |
|
343 |
<Trigger Property="Custom:Contacts.IsAnyContactOrMouseCapturedWithin" SourceName="SliderDecrease" Value="True"> |
|
344 |
<Trigger.EnterActions> |
|
345 |
<BeginStoryboard> |
|
346 |
<Storyboard> |
|
347 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Height" To="19"/> |
|
348 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX" To="9"/> |
|
349 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY" To="9"/> |
|
350 |
</Storyboard> |
|
351 |
</BeginStoryboard> |
|
352 |
</Trigger.EnterActions> |
|
353 |
<Trigger.ExitActions> |
|
354 |
<BeginStoryboard> |
|
355 |
<Storyboard> |
|
356 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Height"/> |
|
357 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX"/> |
|
358 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY"/> |
|
359 |
</Storyboard> |
|
360 |
</BeginStoryboard> |
|
361 |
</Trigger.ExitActions> |
|
362 |
<Setter Property="Fill" TargetName="TrackBkgd" Value="#661B2022"/> |
|
363 |
</Trigger> |
|
364 |
<MultiTrigger> |
|
365 |
<MultiTrigger.Conditions> |
|
366 |
<Condition Property="IsMoveToPointEnabled" Value="True"/> |
|
367 |
<Condition Property="IsAnyContactCaptured" Value="True"/> |
|
368 |
<Condition Property="Custom:Contacts.IsAnyContactOrMouseCapturedWithin" SourceName="Thumb" Value="True"/> |
|
369 |
</MultiTrigger.Conditions> |
|
370 |
<MultiTrigger.ExitActions> |
|
371 |
<BeginStoryboard> |
|
372 |
<Storyboard> |
|
373 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Height"/> |
|
374 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX"/> |
|
375 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY"/> |
|
376 |
</Storyboard> |
|
377 |
</BeginStoryboard> |
|
378 |
</MultiTrigger.ExitActions> |
|
379 |
<MultiTrigger.EnterActions> |
|
380 |
<BeginStoryboard> |
|
381 |
<Storyboard> |
|
382 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Height" To="19"/> |
|
383 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX" To="9"/> |
|
384 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY" To="9"/> |
|
385 |
</Storyboard> |
|
386 |
</BeginStoryboard> |
|
387 |
</MultiTrigger.EnterActions> |
|
388 |
</MultiTrigger> |
|
389 |
<Trigger Property="IsEnabled" Value="False"> |
|
390 |
<Setter Property="Foreground" TargetName="Thumb" Value="#A5333333"/> |
|
391 |
<Setter Property="Fill" TargetName="TrackBkgd" Value="#00000000"/> |
|
392 |
<Setter Property="Opacity" TargetName="TrackBkgd" Value="0.35"/> |
|
393 |
</Trigger> |
|
394 |
</ControlTemplate.Triggers> |
|
395 |
</ControlTemplate> |
|
396 |
</Setter.Value> |
|
397 |
</Setter> |
|
398 |
<Style.Triggers> |
|
399 |
<Trigger Property="Orientation" Value="Vertical"> |
|
400 |
<Setter Property="Width" Value="NaN"/> |
|
401 |
<Setter Property="MinWidth" Value="30"/> |
|
402 |
<Setter Property="Height" Value="NaN"/> |
|
403 |
<Setter Property="MinHeight" Value="30"/> |
|
404 |
<Setter Property="Template"> |
|
405 |
<Setter.Value> |
|
406 |
<ControlTemplate TargetType="{x:Type Custom:SurfaceSlider}"> |
|
407 |
<ControlTemplate.Resources> |
|
408 |
<Storyboard x:Key="Touch"> |
|
409 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Width" To="19"/> |
|
410 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX" To="9"/> |
|
411 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY" To="9"/> |
|
412 |
</Storyboard> |
|
413 |
<Storyboard x:Key="Release"> |
|
414 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Width"/> |
|
415 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX"/> |
|
416 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY"/> |
|
417 |
</Storyboard> |
|
418 |
</ControlTemplate.Resources> |
|
419 |
<Grid x:Name="GridRoot" HorizontalAlignment="Stretch" Width="Auto" SnapsToDevicePixels="True" Background="Transparent"> |
|
420 |
<Grid.ColumnDefinitions> |
|
421 |
<ColumnDefinition Width="Auto"/> |
|
422 |
<ColumnDefinition MinWidth="{TemplateBinding MinWidth}" Width="Auto"/> |
|
423 |
<ColumnDefinition Width="Auto"/> |
|
424 |
</Grid.ColumnDefinitions> |
|
425 |
<Canvas ClipToBounds="False"> |
|
426 |
<Label x:Name="PART_SurfaceToolTip"> |
|
427 |
<Label.Style> |
|
428 |
<Style TargetType="{x:Type Label}"> |
|
429 |
<Setter Property="Template"> |
|
430 |
<Setter.Value> |
|
431 |
<ControlTemplate TargetType="{x:Type Label}"> |
|
432 |
<Grid> |
|
433 |
<Border HorizontalAlignment="Stretch" Margin="0" Width="Auto" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="1" CornerRadius="2"> |
|
434 |
<TextBlock Margin="{TemplateBinding Padding}" Background="{x:Null}" Foreground="{TemplateBinding Foreground}" Text="{TemplateBinding Content}"/> |
|
92 | 435 |
</Border> |
146 | 436 |
</Grid> |
437 |
</ControlTemplate> |
|
438 |
</Setter.Value> |
|
439 |
</Setter> |
|
440 |
<Setter Property="Visibility" Value="Collapsed"/> |
|
441 |
<Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.InfoBrushKey}}"/> |
|
442 |
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.InfoTextBrushKey}}"/> |
|
443 |
<Setter Property="BorderBrush" Value="{DynamicResource {x:Static SystemColors.InfoTextBrushKey}}"/> |
|
444 |
<Setter Property="Padding" Value="2"/> |
|
445 |
</Style> |
|
446 |
</Label.Style> |
|
447 |
</Label> |
|
448 |
</Canvas> |
|
449 |
<TickBar x:Name="TopTick" Margin="0,0,1,0" Width="4" SnapsToDevicePixels="True" Visibility="Collapsed" Grid.Column="0" Fill="{TemplateBinding BorderBrush}" IsDirectionReversed="True" Placement="Left" ReservedSpace="30"/> |
|
450 |
<TickBar x:Name="BottomTick" Margin="1,0,0,0" Width="4" SnapsToDevicePixels="True" Visibility="Collapsed" Grid.Column="2" Fill="{TemplateBinding BorderBrush}" IsDirectionReversed="True" Placement="Right" ReservedSpace="30"/> |
|
451 |
<Rectangle x:Name="TrackBkgd" Fill="{TemplateBinding Background}" RadiusX="3" RadiusY="3" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Width="6" Height="Auto" SnapsToDevicePixels="True" Grid.Column="1"> |
|
452 |
<Rectangle.Stroke> |
|
453 |
<LinearGradientBrush EndPoint="1,0.5" StartPoint="0,0.5"> |
|
454 |
<GradientStop Color="#66000000" Offset="0"/> |
|
455 |
<GradientStop Color="#4CFFFFFF" Offset="1"/> |
|
456 |
</LinearGradientBrush> |
|
457 |
</Rectangle.Stroke> |
|
458 |
</Rectangle> |
|
459 |
<Border x:Name="Track" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Opacity="1" SnapsToDevicePixels="True" Background="Transparent" Grid.Column="1"> |
|
460 |
<Custom:SurfaceTrack x:Name="PART_Track" HorizontalAlignment="Stretch" Grid.Column="1"> |
|
461 |
<Custom:SurfaceTrack.DecreaseRepeatButton> |
|
462 |
<Custom:SurfaceRepeatButton x:Name="SliderDecrease" Command="Slider.DecreaseLarge"> |
|
463 |
<Custom:SurfaceRepeatButton.Style> |
|
464 |
<Style TargetType="{x:Type Custom:SurfaceRepeatButton}"> |
|
465 |
<Setter Property="Background" Value="Transparent"/> |
|
466 |
<Setter Property="BorderBrush" Value="Transparent"/> |
|
467 |
<Setter Property="IsTabStop" Value="False"/> |
|
468 |
<Setter Property="Focusable" Value="False"/> |
|
469 |
<Setter Property="Template"> |
|
470 |
<Setter.Value> |
|
471 |
<ControlTemplate TargetType="{x:Type Custom:SurfaceRepeatButton}"> |
|
472 |
<Grid> |
|
473 |
<Rectangle Fill="{TemplateBinding Background}" Stroke="{TemplateBinding BorderBrush}" StrokeThickness="{TemplateBinding BorderThickness}"/> |
|
474 |
</Grid> |
|
475 |
</ControlTemplate> |
|
476 |
</Setter.Value> |
|
477 |
</Setter> |
|
478 |
</Style> |
|
479 |
</Custom:SurfaceRepeatButton.Style> |
|
480 |
</Custom:SurfaceRepeatButton> |
|
481 |
</Custom:SurfaceTrack.DecreaseRepeatButton> |
|
482 |
<Custom:SurfaceTrack.IncreaseRepeatButton> |
|
483 |
<Custom:SurfaceRepeatButton x:Name="SliderIncrease" Command="Slider.IncreaseLarge"> |
|
484 |
<Custom:SurfaceRepeatButton.Style> |
|
485 |
<Style TargetType="{x:Type Custom:SurfaceRepeatButton}"> |
|
486 |
<Setter Property="Background" Value="Transparent"/> |
|
487 |
<Setter Property="BorderBrush" Value="Transparent"/> |
|
488 |
<Setter Property="IsTabStop" Value="False"/> |
|
489 |
<Setter Property="Focusable" Value="False"/> |
|
490 |
<Setter Property="Template"> |
|
491 |
<Setter.Value> |
|
492 |
<ControlTemplate TargetType="{x:Type Custom:SurfaceRepeatButton}"> |
|
493 |
<Grid> |
|
494 |
<Rectangle Fill="{TemplateBinding Background}" Stroke="{TemplateBinding BorderBrush}" StrokeThickness="{TemplateBinding BorderThickness}"/> |
|
495 |
</Grid> |
|
496 |
</ControlTemplate> |
|
497 |
</Setter.Value> |
|
498 |
</Setter> |
|
499 |
</Style> |
|
500 |
</Custom:SurfaceRepeatButton.Style> |
|
501 |
</Custom:SurfaceRepeatButton> |
|
502 |
</Custom:SurfaceTrack.IncreaseRepeatButton> |
|
503 |
<Custom:SurfaceTrack.Thumb> |
|
504 |
<Custom:SurfaceThumb x:Name="Thumb" HorizontalAlignment="Center" Margin="0,0,1,0" MinHeight="30" MinWidth="30" Width="30" Height="30" Foreground="Black" SnapsToDevicePixels="True"> |
|
505 |
<Custom:SurfaceThumb.Style> |
|
506 |
<Style TargetType="{x:Type Custom:SurfaceThumb}"> |
|
507 |
<Setter Property="Background" Value="Transparent"/> |
|
508 |
<Setter Property="Custom:ContactVisualizer.Adapter"> |
|
509 |
<Setter.Value> |
|
510 |
<Custom:ContactVisualizerRectangleAdapter RadiusX="15" RadiusY="15"/> |
|
511 |
</Setter.Value> |
|
512 |
</Setter> |
|
513 |
<Setter Property="Template"> |
|
514 |
<Setter.Value> |
|
515 |
<ControlTemplate TargetType="{x:Type Custom:SurfaceThumb}"> |
|
516 |
<ControlTemplate.Resources> |
|
517 |
<Storyboard x:Key="Press"> |
|
518 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
519 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> |
|
520 |
</DoubleAnimationUsingKeyFrames> |
|
521 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
522 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
523 |
</ThicknessAnimationUsingKeyFrames> |
|
524 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
525 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
526 |
</ThicknessAnimationUsingKeyFrames> |
|
527 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
528 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
529 |
</ThicknessAnimationUsingKeyFrames> |
|
530 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
531 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
532 |
</ThicknessAnimationUsingKeyFrames> |
|
533 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
534 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
535 |
</DoubleAnimationUsingKeyFrames> |
|
536 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
537 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
538 |
</DoubleAnimationUsingKeyFrames> |
|
539 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
540 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
541 |
</DoubleAnimationUsingKeyFrames> |
|
542 |
</Storyboard> |
|
543 |
<Storyboard x:Key="Release"> |
|
544 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
545 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> |
|
546 |
<SplineDoubleKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="0"/> |
|
547 |
</DoubleAnimationUsingKeyFrames> |
|
548 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
549 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
|
550 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="2"/> |
|
551 |
</ThicknessAnimationUsingKeyFrames> |
|
552 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
553 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
|
554 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="5"/> |
|
555 |
</ThicknessAnimationUsingKeyFrames> |
|
556 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
557 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
|
558 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="5"/> |
|
559 |
</ThicknessAnimationUsingKeyFrames> |
|
560 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
561 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
|
562 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="6"/> |
|
563 |
</ThicknessAnimationUsingKeyFrames> |
|
564 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
565 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> |
|
566 |
<SplineDoubleKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="1"/> |
|
567 |
</DoubleAnimationUsingKeyFrames> |
|
568 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
569 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> |
|
570 |
<SplineDoubleKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="1"/> |
|
571 |
</DoubleAnimationUsingKeyFrames> |
|
572 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
573 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> |
|
574 |
<SplineDoubleKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="1"/> |
|
575 |
</DoubleAnimationUsingKeyFrames> |
|
576 |
</Storyboard> |
|
577 |
</ControlTemplate.Resources> |
|
578 |
<Grid x:Name="Grid" Margin="1" SnapsToDevicePixels="True" Background="Transparent"> |
|
579 |
<Rectangle x:Name="Base" Fill="{TemplateBinding Background}" Stroke="{x:Null}" StrokeThickness="0" RadiusX="15" RadiusY="15" HorizontalAlignment="Stretch" Margin="5" VerticalAlignment="Stretch" Width="Auto" Height="Auto" SnapsToDevicePixels="True"/> |
|
580 |
<Rectangle x:Name="Button" Fill="#33A4B4BD" RadiusX="15" RadiusY="15" HorizontalAlignment="Stretch" Margin="5" VerticalAlignment="Stretch" Width="Auto" Height="Auto" SnapsToDevicePixels="True"> |
|
581 |
<Rectangle.Stroke> |
|
582 |
<LinearGradientBrush EndPoint="0,0" StartPoint="0,1"> |
|
583 |
<GradientStop Color="#66000000" Offset="0"/> |
|
584 |
<GradientStop Color="#33000000" Offset="1"/> |
|
585 |
</LinearGradientBrush> |
|
586 |
</Rectangle.Stroke> |
|
587 |
</Rectangle> |
|
588 |
<Rectangle x:Name="RenderOverlay" StrokeThickness="1" RadiusX="15" RadiusY="15" HorizontalAlignment="Stretch" Margin="6" VerticalAlignment="Stretch" Width="Auto" Height="Auto" Opacity="1" SnapsToDevicePixels="True"> |
|
589 |
<Rectangle.Stroke> |
|
590 |
<LinearGradientBrush EndPoint="0,1" StartPoint="0,0"> |
|
591 |
<GradientStop Color="#7FFFFFFF" Offset="0"/> |
|
592 |
<GradientStop Color="#0CFFFFFF" Offset="1"/> |
|
593 |
</LinearGradientBrush> |
|
594 |
</Rectangle.Stroke> |
|
595 |
<Rectangle.Fill> |
|
596 |
<LinearGradientBrush EndPoint="0.5,0" StartPoint="0.5,1"> |
|
597 |
<GradientStop Color="#26000000" Offset="0"/> |
|
598 |
<GradientStop Color="#4CFFFFFF" Offset="1"/> |
|
599 |
</LinearGradientBrush> |
|
600 |
</Rectangle.Fill> |
|
601 |
</Rectangle> |
|
602 |
<Microsoft_Surface_Presentation_Generic:SurfaceShadowChrome x:Name="GlowBorder" HorizontalAlignment="Stretch" Margin="2" VerticalAlignment="Stretch" Width="Auto" Height="Auto" Opacity="0" Color="White" CornerRadius="{Binding ActualHeight, ElementName=GlowBorder}"/> |
|
603 |
<Rectangle x:Name="Contact" Fill="Transparent" Stroke="{x:Null}"/> |
|
604 |
</Grid> |
|
605 |
<ControlTemplate.Triggers> |
|
606 |
<Trigger Property="IsFocused" Value="True"/> |
|
607 |
<Trigger Property="IsEnabled" Value="False"> |
|
608 |
<Setter Property="Fill" TargetName="Button" Value="#00000000"/> |
|
609 |
<Setter Property="Fill" TargetName="RenderOverlay" Value="#00000000"/> |
|
610 |
<Setter Property="Stroke" TargetName="Button" Value="#33000000"/> |
|
611 |
<Setter Property="Opacity" TargetName="RenderOverlay" Value="0.5"/> |
|
612 |
</Trigger> |
|
613 |
<Trigger Property="IsDragging" Value="True"> |
|
614 |
<Trigger.EnterActions> |
|
615 |
<BeginStoryboard> |
|
616 |
<Storyboard> |
|
617 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
618 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> |
|
619 |
</DoubleAnimationUsingKeyFrames> |
|
620 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
621 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
622 |
</ThicknessAnimationUsingKeyFrames> |
|
623 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
624 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
625 |
</ThicknessAnimationUsingKeyFrames> |
|
626 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
627 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
628 |
</ThicknessAnimationUsingKeyFrames> |
|
629 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
630 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
631 |
</ThicknessAnimationUsingKeyFrames> |
|
632 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
633 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
634 |
</DoubleAnimationUsingKeyFrames> |
|
635 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
636 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
637 |
</DoubleAnimationUsingKeyFrames> |
|
638 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
639 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
|
640 |
</DoubleAnimationUsingKeyFrames> |
|
641 |
</Storyboard> |
|
642 |
</BeginStoryboard> |
|
643 |
</Trigger.EnterActions> |
|
644 |
<Trigger.ExitActions> |
|
645 |
<BeginStoryboard> |
|
646 |
<Storyboard> |
|
647 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
648 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> |
|
649 |
<SplineDoubleKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="0"/> |
|
650 |
</DoubleAnimationUsingKeyFrames> |
|
651 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
652 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
|
653 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="2"/> |
|
654 |
</ThicknessAnimationUsingKeyFrames> |
|
655 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
656 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
|
657 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="5"/> |
|
658 |
</ThicknessAnimationUsingKeyFrames> |
|
659 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
660 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
|
661 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="5"/> |
|
662 |
</ThicknessAnimationUsingKeyFrames> |
|
663 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
|
664 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
|
665 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="6"/> |
|
666 |
</ThicknessAnimationUsingKeyFrames> |
|
667 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
668 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> |
|
669 |
<SplineDoubleKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="1"/> |
|
670 |
</DoubleAnimationUsingKeyFrames> |
|
671 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
672 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> |
|
673 |
<SplineDoubleKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="1"/> |
|
674 |
</DoubleAnimationUsingKeyFrames> |
|
675 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(UIElement.Opacity)"> |
|
676 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> |
|
677 |
<SplineDoubleKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="1"/> |
|
678 |
</DoubleAnimationUsingKeyFrames> |
|
679 |
</Storyboard> |
|
680 |
</BeginStoryboard> |
|
681 |
</Trigger.ExitActions> |
|
682 |
</Trigger> |
|
683 |
</ControlTemplate.Triggers> |
|
684 |
</ControlTemplate> |
|
685 |
</Setter.Value> |
|
686 |
</Setter> |
|
687 |
</Style> |
|
688 |
</Custom:SurfaceThumb.Style> |
|
689 |
</Custom:SurfaceThumb> |
|
690 |
</Custom:SurfaceTrack.Thumb> |
|
691 |
</Custom:SurfaceTrack> |
|
692 |
</Border> |
|
693 |
</Grid> |
|
694 |
<ControlTemplate.Triggers> |
|
695 |
<Trigger Property="TickPlacement" Value="TopLeft"> |
|
696 |
<Setter Property="Visibility" TargetName="TopTick" Value="Visible"/> |
|
697 |
</Trigger> |
|
698 |
<Trigger Property="TickPlacement" Value="BottomRight"> |
|
699 |
<Setter Property="Visibility" TargetName="BottomTick" Value="Visible"/> |
|
700 |
</Trigger> |
|
701 |
<Trigger Property="TickPlacement" Value="Both"> |
|
702 |
<Setter Property="Visibility" TargetName="TopTick" Value="Visible"/> |
|
703 |
<Setter Property="Visibility" TargetName="BottomTick" Value="Visible"/> |
|
704 |
</Trigger> |
|
705 |
<Trigger Property="IsMoveToPointEnabled" Value="True"> |
|
706 |
<Setter Property="Visibility" TargetName="SliderIncrease" Value="Collapsed"/> |
|
707 |
<Setter Property="Visibility" TargetName="SliderDecrease" Value="Collapsed"/> |
|
708 |
</Trigger> |
|
709 |
<Trigger Property="Custom:Contacts.IsAnyContactOrMouseCapturedWithin" SourceName="SliderIncrease" Value="True"> |
|
710 |
<Trigger.EnterActions> |
|
711 |
<BeginStoryboard> |
|
712 |
<Storyboard> |
|
713 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Width" To="19"/> |
|
714 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX" To="9"/> |
|
715 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY" To="9"/> |
|
716 |
</Storyboard> |
|
717 |
</BeginStoryboard> |
|
718 |
</Trigger.EnterActions> |
|
719 |
<Trigger.ExitActions> |
|
720 |
<BeginStoryboard> |
|
721 |
<Storyboard> |
|
722 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Width"/> |
|
723 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX"/> |
|
724 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY"/> |
|
725 |
</Storyboard> |
|
726 |
</BeginStoryboard> |
|
727 |
</Trigger.ExitActions> |
|
728 |
<Setter Property="Fill" TargetName="TrackBkgd" Value="#661B2022"/> |
|
729 |
</Trigger> |
|
730 |
<Trigger Property="Custom:Contacts.IsAnyContactOrMouseCapturedWithin" SourceName="SliderDecrease" Value="True"> |
|
731 |
<Trigger.EnterActions> |
|
732 |
<BeginStoryboard> |
|
733 |
<Storyboard> |
|
734 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Width" To="19"/> |
|
735 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX" To="9"/> |
|
736 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY" To="9"/> |
|
737 |
</Storyboard> |
|
738 |
</BeginStoryboard> |
|
739 |
</Trigger.EnterActions> |
|
740 |
<Trigger.ExitActions> |
|
741 |
<BeginStoryboard> |
|
742 |
<Storyboard> |
|
743 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Width"/> |
|
744 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX"/> |
|
745 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY"/> |
|
746 |
</Storyboard> |
|
747 |
</BeginStoryboard> |
|
748 |
</Trigger.ExitActions> |
|
749 |
<Setter Property="Fill" TargetName="TrackBkgd" Value="#661B2022"/> |
|
750 |
</Trigger> |
|
751 |
<MultiTrigger> |
|
752 |
<MultiTrigger.Conditions> |
|
753 |
<Condition Property="IsMoveToPointEnabled" Value="True"/> |
|
754 |
<Condition Property="IsAnyContactCaptured" Value="True"/> |
|
755 |
<Condition Property="Custom:Contacts.IsAnyContactOrMouseCapturedWithin" SourceName="Thumb" Value="True"/> |
|
756 |
</MultiTrigger.Conditions> |
|
757 |
<MultiTrigger.ExitActions> |
|
758 |
<BeginStoryboard> |
|
759 |
<Storyboard> |
|
760 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Width"/> |
|
761 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX"/> |
|
762 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY"/> |
|
763 |
</Storyboard> |
|
764 |
</BeginStoryboard> |
|
765 |
</MultiTrigger.ExitActions> |
|
766 |
<MultiTrigger.EnterActions> |
|
767 |
<BeginStoryboard> |
|
768 |
<Storyboard> |
|
769 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Width" To="19"/> |
|
770 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX" To="9"/> |
|
771 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY" To="9"/> |
|
772 |
</Storyboard> |
|
773 |
</BeginStoryboard> |
|
774 |
</MultiTrigger.EnterActions> |
|
775 |
</MultiTrigger> |
|
776 |
<Trigger Property="IsEnabled" Value="False"> |
|
777 |
<Setter Property="Foreground" TargetName="Thumb" Value="#A5333333"/> |
|
778 |
<Setter Property="Fill" TargetName="TrackBkgd" Value="#00000000"/> |
|
779 |
<Setter Property="Opacity" TargetName="TrackBkgd" Value="0.35"/> |
|
780 |
<Setter Property="Margin" TargetName="Thumb" Value="0"/> |
|
781 |
</Trigger> |
|
782 |
</ControlTemplate.Triggers> |
|
783 |
</ControlTemplate> |
|
784 |
</Setter.Value> |
|
785 |
</Setter> |
|
786 |
</Trigger> |
|
787 |
</Style.Triggers> |
|
788 |
</Style> |
|
168
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
789 |
<Style x:Key="SurfaceSliderStylePause" TargetType="{x:Type Custom:SurfaceSlider}"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
790 |
<Setter Property="Background" Value="#191B2022"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
791 |
<Setter Property="BorderBrush" Value="#3F040404"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
792 |
<Setter Property="Foreground" Value="Black"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
793 |
<Setter Property="Width" Value="NaN"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
794 |
<Setter Property="MinWidth" Value="30"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
795 |
<Setter Property="Height" Value="NaN"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
796 |
<Setter Property="MinHeight" Value="30"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
797 |
<Setter Property="Template"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
798 |
<Setter.Value> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
799 |
<ControlTemplate TargetType="{x:Type Custom:SurfaceSlider}"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
800 |
<ControlTemplate.Resources> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
801 |
<Storyboard x:Key="Touch"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
802 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Height" To="19"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
803 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX" To="9"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
804 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY" To="9"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
805 |
</Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
806 |
<Storyboard x:Key="Release"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
807 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Height"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
808 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
809 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
810 |
</Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
811 |
</ControlTemplate.Resources> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
812 |
<Grid x:Name="GridRoot" VerticalAlignment="Stretch" Height="Auto" SnapsToDevicePixels="True" Background="Transparent"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
813 |
<Grid.RowDefinitions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
814 |
<RowDefinition Height="Auto"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
815 |
<RowDefinition Height="Auto" MinHeight="{TemplateBinding MinHeight}"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
816 |
<RowDefinition Height="Auto"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
817 |
</Grid.RowDefinitions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
818 |
<Canvas ClipToBounds="False"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
819 |
<Label x:Name="PART_SurfaceToolTip"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
820 |
<Label.Style> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
821 |
<Style TargetType="{x:Type Label}"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
822 |
<Setter Property="Template"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
823 |
<Setter.Value> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
824 |
<ControlTemplate TargetType="{x:Type Label}"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
825 |
<Grid> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
826 |
<Border HorizontalAlignment="Stretch" Margin="0" Width="Auto" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="1" CornerRadius="2"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
827 |
<TextBlock Margin="{TemplateBinding Padding}" Background="{x:Null}" Foreground="{TemplateBinding Foreground}" Text="{TemplateBinding Content}"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
828 |
</Border> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
829 |
</Grid> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
830 |
</ControlTemplate> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
831 |
</Setter.Value> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
832 |
</Setter> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
833 |
<Setter Property="Visibility" Value="Collapsed"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
834 |
<Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.InfoBrushKey}}"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
835 |
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.InfoTextBrushKey}}"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
836 |
<Setter Property="BorderBrush" Value="{DynamicResource {x:Static SystemColors.InfoTextBrushKey}}"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
837 |
<Setter Property="Padding" Value="2"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
838 |
</Style> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
839 |
</Label.Style> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
840 |
</Label> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
841 |
</Canvas> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
842 |
<TickBar x:Name="TopTick" Margin="0,0,0,1" Height="4" Opacity="1" SnapsToDevicePixels="True" Visibility="Collapsed" Grid.Row="0" Fill="{TemplateBinding BorderBrush}" IsDirectionReversed="False" Placement="Top" ReservedSpace="30"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
843 |
<TickBar x:Name="BottomTick" Margin="0,1,0,0" Height="4" Opacity="1" SnapsToDevicePixels="True" Visibility="Collapsed" Grid.Row="2" Fill="{TemplateBinding BorderBrush}" Placement="Bottom" ReservedSpace="30"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
844 |
<Rectangle x:Name="TrackBkgd" RadiusX="3" RadiusY="3" HorizontalAlignment="Stretch" VerticalAlignment="Center" Width="Auto" Height="3" Opacity="1" SnapsToDevicePixels="True" Grid.Row="1" Fill="#FFF8EDED" Stroke="{x:Null}"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
845 |
<Ellipse Fill="White" Stroke="{x:Null}" HorizontalAlignment="Left" Margin="0,10.116,0,10.128" Width="12.078" Grid.Row="1" x:Name="ellipseDebut"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
846 |
<Ellipse Fill="White" Stroke="{x:Null}" HorizontalAlignment="Left" Margin="0,10.116,0,10.128" Width="12.078" Grid.Row="1" x:Name="ellipseFin" RenderTransformOrigin="0.5,0.5"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
847 |
<Ellipse.RenderTransform> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
848 |
<TransformGroup> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
849 |
<ScaleTransform ScaleX="1" ScaleY="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
850 |
<SkewTransform AngleX="0" AngleY="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
851 |
<RotateTransform Angle="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
852 |
<TranslateTransform X="{Binding Path=ActualWidth, ElementName=TrackBkgd, Mode=Default}" Y="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
853 |
</TransformGroup> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
854 |
</Ellipse.RenderTransform> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
855 |
</Ellipse> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
856 |
<Border x:Name="Track" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Height="Auto" Opacity="1" SnapsToDevicePixels="True" Background="Transparent" Grid.Row="1"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
857 |
<Custom:SurfaceTrack x:Name="PART_Track" Grid.Row="1"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
858 |
<Custom:SurfaceTrack.Thumb> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
859 |
<Custom:SurfaceThumb x:Name="Thumb" MinHeight="30" MinWidth="30" Width="30" Height="30" Foreground="Black" SnapsToDevicePixels="True" Background="{DynamicResource SliderPlay_xaml}" Margin="-5.072,0,5.048,0" BorderBrush="{x:Null}"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
860 |
<Custom:SurfaceThumb.Style> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
861 |
<Style TargetType="{x:Type Custom:SurfaceThumb}"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
862 |
<Setter Property="Background" Value="Transparent"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
863 |
<Setter Property="Custom:ContactVisualizer.Adapter"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
864 |
<Setter.Value> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
865 |
<Custom:ContactVisualizerRectangleAdapter RadiusX="15" RadiusY="15"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
866 |
</Setter.Value> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
867 |
</Setter> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
868 |
<Setter Property="Template"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
869 |
<Setter.Value> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
870 |
<ControlTemplate TargetType="{x:Type Custom:SurfaceThumb}"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
871 |
<ControlTemplate.Resources> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
872 |
<Storyboard x:Key="Press"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
873 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
874 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
875 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
876 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
877 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
878 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
879 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
880 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
881 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
882 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
883 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
884 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
885 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
886 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
887 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
888 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
889 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
890 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
891 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
892 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
893 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
894 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
895 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
896 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
897 |
</Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
898 |
<Storyboard x:Key="Release"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
899 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
900 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
901 |
<SplineDoubleKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
902 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
903 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
904 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
905 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="2"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
906 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
907 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
908 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
909 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="5"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
910 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
911 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
912 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
913 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="5"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
914 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
915 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
916 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
917 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="6"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
918 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
919 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
920 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
921 |
<SplineDoubleKeyFrame KeyTime="00:00:00.5000000" Value="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
922 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
923 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
924 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
925 |
<SplineDoubleKeyFrame KeyTime="00:00:00.5000000" Value="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
926 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
927 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
928 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
929 |
<SplineDoubleKeyFrame KeyTime="00:00:00.5000000" Value="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
930 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
931 |
</Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
932 |
</ControlTemplate.Resources> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
933 |
<Grid x:Name="Grid" Margin="1" SnapsToDevicePixels="True" Background="Transparent"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
934 |
<Rectangle x:Name="Base" Fill="{TemplateBinding Background}" Stroke="{x:Null}" StrokeThickness="0" RadiusX="15" RadiusY="15" HorizontalAlignment="Stretch" Margin="5" VerticalAlignment="Stretch" Width="Auto" Height="Auto" SnapsToDevicePixels="True" Visibility="Collapsed"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
935 |
<Rectangle x:Name="Button" Fill="{x:Null}" RadiusX="15" RadiusY="15" HorizontalAlignment="Stretch" Margin="5" VerticalAlignment="Stretch" Width="Auto" Height="Auto" SnapsToDevicePixels="True" Stroke="{x:Null}"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
936 |
<Rectangle x:Name="RenderOverlay" StrokeThickness="1" RadiusX="15" RadiusY="15" HorizontalAlignment="Stretch" Margin="6" VerticalAlignment="Stretch" Width="Auto" Height="Auto" Opacity="1" SnapsToDevicePixels="True" Fill="{x:Null}" Stroke="{x:Null}"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
937 |
<Microsoft_Surface_Presentation_Generic:SurfaceShadowChrome x:Name="GlowBorder" HorizontalAlignment="Stretch" Margin="2" VerticalAlignment="Stretch" Width="Auto" Height="Auto" Opacity="0" Color="White" CornerRadius="{Binding Path=ActualHeight, ElementName=GlowBorder}"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
938 |
<Rectangle x:Name="Contact" Fill="Transparent" Stroke="{x:Null}"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
939 |
<Rectangle x:Name="PauseSymbol" Fill="{DynamicResource Play_xaml}" Stroke="{x:Null}" RenderTransformOrigin="0.5,0.5" Margin="0,-4.435,0.676,11.231" HorizontalAlignment="Right" Width="12.393" Visibility="Visible"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
940 |
<Rectangle.RenderTransform> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
941 |
<TransformGroup> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
942 |
<ScaleTransform/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
943 |
<SkewTransform/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
944 |
<RotateTransform Angle="89.649"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
945 |
<TranslateTransform/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
946 |
</TransformGroup> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
947 |
</Rectangle.RenderTransform> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
948 |
</Rectangle> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
949 |
</Grid> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
950 |
<ControlTemplate.Triggers> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
951 |
<Trigger Property="IsFocused" Value="True"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
952 |
<Trigger Property="IsEnabled" Value="False"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
953 |
<Setter Property="Fill" TargetName="Button" Value="#00000000"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
954 |
<Setter Property="Fill" TargetName="RenderOverlay" Value="#00000000"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
955 |
<Setter Property="Stroke" TargetName="Button" Value="#33000000"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
956 |
<Setter Property="Opacity" TargetName="RenderOverlay" Value="0.5"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
957 |
</Trigger> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
958 |
<Trigger Property="IsDragging" Value="True"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
959 |
<Trigger.EnterActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
960 |
<BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
961 |
<Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
962 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
963 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
964 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
965 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
966 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
967 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
968 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
969 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
970 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
971 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
972 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
973 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
974 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
975 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
976 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
977 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
978 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
979 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
980 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
981 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
982 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
983 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
984 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
985 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
986 |
</Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
987 |
</BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
988 |
</Trigger.EnterActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
989 |
<Trigger.ExitActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
990 |
<BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
991 |
<Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
992 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
993 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
994 |
<SplineDoubleKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
995 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
996 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
997 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
998 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="2"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
999 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1000 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1001 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1002 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="5"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1003 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1004 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1005 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1006 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="5"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1007 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1008 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1009 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1010 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="6"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1011 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1012 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1013 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1014 |
<SplineDoubleKeyFrame KeyTime="00:00:00.5000000" Value="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1015 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1016 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1017 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1018 |
<SplineDoubleKeyFrame KeyTime="00:00:00.5000000" Value="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1019 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1020 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1021 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1022 |
<SplineDoubleKeyFrame KeyTime="00:00:00.5000000" Value="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1023 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1024 |
</Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1025 |
</BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1026 |
</Trigger.ExitActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1027 |
</Trigger> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1028 |
</ControlTemplate.Triggers> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1029 |
</ControlTemplate> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1030 |
</Setter.Value> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1031 |
</Setter> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1032 |
</Style> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1033 |
</Custom:SurfaceThumb.Style> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1034 |
</Custom:SurfaceThumb> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1035 |
</Custom:SurfaceTrack.Thumb> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1036 |
<Custom:SurfaceTrack.IncreaseRepeatButton> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1037 |
<Custom:SurfaceRepeatButton x:Name="SliderIncrease" Command="Slider.IncreaseLarge"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1038 |
<Custom:SurfaceRepeatButton.Style> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1039 |
<Style TargetType="{x:Type Custom:SurfaceRepeatButton}"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1040 |
<Setter Property="Background" Value="Transparent"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1041 |
<Setter Property="BorderBrush" Value="Transparent"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1042 |
<Setter Property="IsTabStop" Value="False"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1043 |
<Setter Property="Focusable" Value="False"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1044 |
<Setter Property="Template"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1045 |
<Setter.Value> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1046 |
<ControlTemplate TargetType="{x:Type Custom:SurfaceRepeatButton}"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1047 |
<Grid> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1048 |
<Rectangle Fill="{TemplateBinding Background}" Stroke="{TemplateBinding BorderBrush}" StrokeThickness="{TemplateBinding BorderThickness}"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1049 |
</Grid> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1050 |
</ControlTemplate> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1051 |
</Setter.Value> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1052 |
</Setter> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1053 |
</Style> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1054 |
</Custom:SurfaceRepeatButton.Style> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1055 |
</Custom:SurfaceRepeatButton> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1056 |
</Custom:SurfaceTrack.IncreaseRepeatButton> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1057 |
<Custom:SurfaceTrack.DecreaseRepeatButton> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1058 |
<Custom:SurfaceRepeatButton x:Name="SliderDecrease" Command="Slider.DecreaseLarge"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1059 |
<Custom:SurfaceRepeatButton.Style> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1060 |
<Style TargetType="{x:Type Custom:SurfaceRepeatButton}"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1061 |
<Setter Property="Background" Value="Transparent"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1062 |
<Setter Property="BorderBrush" Value="Transparent"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1063 |
<Setter Property="IsTabStop" Value="False"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1064 |
<Setter Property="Focusable" Value="False"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1065 |
<Setter Property="Template"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1066 |
<Setter.Value> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1067 |
<ControlTemplate TargetType="{x:Type Custom:SurfaceRepeatButton}"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1068 |
<Grid> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1069 |
<Rectangle Fill="{TemplateBinding Background}" Stroke="{TemplateBinding BorderBrush}" StrokeThickness="{TemplateBinding BorderThickness}"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1070 |
</Grid> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1071 |
</ControlTemplate> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1072 |
</Setter.Value> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1073 |
</Setter> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1074 |
</Style> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1075 |
</Custom:SurfaceRepeatButton.Style> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1076 |
</Custom:SurfaceRepeatButton> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1077 |
</Custom:SurfaceTrack.DecreaseRepeatButton> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1078 |
</Custom:SurfaceTrack> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1079 |
</Border> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1080 |
</Grid> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1081 |
<ControlTemplate.Triggers> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1082 |
<Trigger Property="TickPlacement" Value="TopLeft"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1083 |
<Setter Property="Visibility" TargetName="TopTick" Value="Visible"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1084 |
</Trigger> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1085 |
<Trigger Property="TickPlacement" Value="BottomRight"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1086 |
<Setter Property="Visibility" TargetName="BottomTick" Value="Visible"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1087 |
</Trigger> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1088 |
<Trigger Property="TickPlacement" Value="Both"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1089 |
<Setter Property="Visibility" TargetName="TopTick" Value="Visible"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1090 |
<Setter Property="Visibility" TargetName="BottomTick" Value="Visible"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1091 |
</Trigger> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1092 |
<Trigger Property="IsMoveToPointEnabled" Value="True"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1093 |
<Setter Property="Visibility" TargetName="SliderIncrease" Value="Collapsed"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1094 |
<Setter Property="Visibility" TargetName="SliderDecrease" Value="Collapsed"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1095 |
</Trigger> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1096 |
<Trigger Property="Custom:Contacts.IsAnyContactOrMouseCapturedWithin" SourceName="SliderIncrease" Value="True"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1097 |
<Trigger.EnterActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1098 |
<BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1099 |
<Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1100 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Height" To="19"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1101 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX" To="9"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1102 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY" To="9"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1103 |
</Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1104 |
</BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1105 |
</Trigger.EnterActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1106 |
<Trigger.ExitActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1107 |
<BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1108 |
<Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1109 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Height"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1110 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1111 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1112 |
</Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1113 |
</BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1114 |
</Trigger.ExitActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1115 |
<Setter Property="Fill" TargetName="TrackBkgd" Value="#661B2022"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1116 |
</Trigger> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1117 |
<Trigger Property="Custom:Contacts.IsAnyContactOrMouseCapturedWithin" SourceName="SliderDecrease" Value="True"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1118 |
<Trigger.EnterActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1119 |
<BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1120 |
<Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1121 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Height" To="19"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1122 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX" To="9"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1123 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY" To="9"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1124 |
</Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1125 |
</BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1126 |
</Trigger.EnterActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1127 |
<Trigger.ExitActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1128 |
<BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1129 |
<Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1130 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Height"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1131 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1132 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1133 |
</Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1134 |
</BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1135 |
</Trigger.ExitActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1136 |
<Setter Property="Fill" TargetName="TrackBkgd" Value="#661B2022"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1137 |
</Trigger> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1138 |
<MultiTrigger> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1139 |
<MultiTrigger.Conditions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1140 |
<Condition Property="IsMoveToPointEnabled" Value="True"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1141 |
<Condition Property="IsAnyContactCaptured" Value="True"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1142 |
<Condition Property="Custom:Contacts.IsAnyContactOrMouseCapturedWithin" SourceName="Thumb" Value="True"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1143 |
</MultiTrigger.Conditions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1144 |
<MultiTrigger.ExitActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1145 |
<BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1146 |
<Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1147 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Height"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1148 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1149 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1150 |
</Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1151 |
</BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1152 |
</MultiTrigger.ExitActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1153 |
<MultiTrigger.EnterActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1154 |
<BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1155 |
<Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1156 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Height" To="19"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1157 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX" To="9"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1158 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY" To="9"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1159 |
</Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1160 |
</BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1161 |
</MultiTrigger.EnterActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1162 |
</MultiTrigger> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1163 |
<Trigger Property="IsEnabled" Value="False"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1164 |
<Setter Property="Foreground" TargetName="Thumb" Value="#A5333333"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1165 |
<Setter Property="Fill" TargetName="TrackBkgd" Value="#00000000"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1166 |
<Setter Property="Opacity" TargetName="TrackBkgd" Value="0.35"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1167 |
</Trigger> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1168 |
</ControlTemplate.Triggers> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1169 |
</ControlTemplate> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1170 |
</Setter.Value> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1171 |
</Setter> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1172 |
<Style.Triggers> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1173 |
<Trigger Property="Orientation" Value="Vertical"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1174 |
<Setter Property="Width" Value="NaN"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1175 |
<Setter Property="MinWidth" Value="30"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1176 |
<Setter Property="Height" Value="NaN"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1177 |
<Setter Property="MinHeight" Value="30"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1178 |
<Setter Property="Template"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1179 |
<Setter.Value> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1180 |
<ControlTemplate TargetType="{x:Type Custom:SurfaceSlider}"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1181 |
<ControlTemplate.Resources> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1182 |
<Storyboard x:Key="Touch"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1183 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Width" To="19"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1184 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX" To="9"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1185 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY" To="9"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1186 |
</Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1187 |
<Storyboard x:Key="Release"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1188 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Width"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1189 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1190 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1191 |
</Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1192 |
</ControlTemplate.Resources> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1193 |
<Grid x:Name="GridRoot" HorizontalAlignment="Stretch" Width="Auto" SnapsToDevicePixels="True" Background="Transparent"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1194 |
<Grid.ColumnDefinitions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1195 |
<ColumnDefinition Width="Auto"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1196 |
<ColumnDefinition MinWidth="{TemplateBinding MinWidth}" Width="Auto"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1197 |
<ColumnDefinition Width="Auto"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1198 |
</Grid.ColumnDefinitions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1199 |
<Canvas ClipToBounds="False"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1200 |
<Label x:Name="PART_SurfaceToolTip"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1201 |
<Label.Style> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1202 |
<Style TargetType="{x:Type Label}"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1203 |
<Setter Property="Template"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1204 |
<Setter.Value> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1205 |
<ControlTemplate TargetType="{x:Type Label}"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1206 |
<Grid> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1207 |
<Border HorizontalAlignment="Stretch" Margin="0" Width="Auto" Background="{TemplateBinding Background}" BorderBrush="{TemplateBinding BorderBrush}" BorderThickness="1" CornerRadius="2"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1208 |
<TextBlock Margin="{TemplateBinding Padding}" Background="{x:Null}" Foreground="{TemplateBinding Foreground}" Text="{TemplateBinding Content}"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1209 |
</Border> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1210 |
</Grid> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1211 |
</ControlTemplate> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1212 |
</Setter.Value> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1213 |
</Setter> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1214 |
<Setter Property="Visibility" Value="Collapsed"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1215 |
<Setter Property="Background" Value="{DynamicResource {x:Static SystemColors.InfoBrushKey}}"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1216 |
<Setter Property="Foreground" Value="{DynamicResource {x:Static SystemColors.InfoTextBrushKey}}"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1217 |
<Setter Property="BorderBrush" Value="{DynamicResource {x:Static SystemColors.InfoTextBrushKey}}"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1218 |
<Setter Property="Padding" Value="2"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1219 |
</Style> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1220 |
</Label.Style> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1221 |
</Label> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1222 |
</Canvas> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1223 |
<TickBar x:Name="TopTick" Margin="0,0,1,0" Width="4" SnapsToDevicePixels="True" Visibility="Collapsed" Grid.Column="0" Fill="{TemplateBinding BorderBrush}" IsDirectionReversed="True" Placement="Left" ReservedSpace="30"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1224 |
<TickBar x:Name="BottomTick" Margin="1,0,0,0" Width="4" SnapsToDevicePixels="True" Visibility="Collapsed" Grid.Column="2" Fill="{TemplateBinding BorderBrush}" IsDirectionReversed="True" Placement="Right" ReservedSpace="30"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1225 |
<Rectangle x:Name="TrackBkgd" Fill="{TemplateBinding Background}" RadiusX="3" RadiusY="3" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Width="6" Height="Auto" SnapsToDevicePixels="True" Grid.Column="1"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1226 |
<Rectangle.Stroke> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1227 |
<LinearGradientBrush EndPoint="1,0.5" StartPoint="0,0.5"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1228 |
<GradientStop Color="#66000000" Offset="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1229 |
<GradientStop Color="#4CFFFFFF" Offset="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1230 |
</LinearGradientBrush> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1231 |
</Rectangle.Stroke> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1232 |
</Rectangle> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1233 |
<Border x:Name="Track" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Opacity="1" SnapsToDevicePixels="True" Background="Transparent" Grid.Column="1"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1234 |
<Custom:SurfaceTrack x:Name="PART_Track" HorizontalAlignment="Stretch" Grid.Column="1"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1235 |
<Custom:SurfaceTrack.DecreaseRepeatButton> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1236 |
<Custom:SurfaceRepeatButton x:Name="SliderDecrease" Command="Slider.DecreaseLarge"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1237 |
<Custom:SurfaceRepeatButton.Style> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1238 |
<Style TargetType="{x:Type Custom:SurfaceRepeatButton}"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1239 |
<Setter Property="Background" Value="Transparent"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1240 |
<Setter Property="BorderBrush" Value="Transparent"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1241 |
<Setter Property="IsTabStop" Value="False"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1242 |
<Setter Property="Focusable" Value="False"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1243 |
<Setter Property="Template"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1244 |
<Setter.Value> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1245 |
<ControlTemplate TargetType="{x:Type Custom:SurfaceRepeatButton}"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1246 |
<Grid> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1247 |
<Rectangle Fill="{TemplateBinding Background}" Stroke="{TemplateBinding BorderBrush}" StrokeThickness="{TemplateBinding BorderThickness}"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1248 |
</Grid> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1249 |
</ControlTemplate> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1250 |
</Setter.Value> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1251 |
</Setter> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1252 |
</Style> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1253 |
</Custom:SurfaceRepeatButton.Style> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1254 |
</Custom:SurfaceRepeatButton> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1255 |
</Custom:SurfaceTrack.DecreaseRepeatButton> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1256 |
<Custom:SurfaceTrack.IncreaseRepeatButton> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1257 |
<Custom:SurfaceRepeatButton x:Name="SliderIncrease" Command="Slider.IncreaseLarge"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1258 |
<Custom:SurfaceRepeatButton.Style> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1259 |
<Style TargetType="{x:Type Custom:SurfaceRepeatButton}"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1260 |
<Setter Property="Background" Value="Transparent"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1261 |
<Setter Property="BorderBrush" Value="Transparent"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1262 |
<Setter Property="IsTabStop" Value="False"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1263 |
<Setter Property="Focusable" Value="False"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1264 |
<Setter Property="Template"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1265 |
<Setter.Value> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1266 |
<ControlTemplate TargetType="{x:Type Custom:SurfaceRepeatButton}"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1267 |
<Grid> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1268 |
<Rectangle Fill="{TemplateBinding Background}" Stroke="{TemplateBinding BorderBrush}" StrokeThickness="{TemplateBinding BorderThickness}"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1269 |
</Grid> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1270 |
</ControlTemplate> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1271 |
</Setter.Value> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1272 |
</Setter> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1273 |
</Style> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1274 |
</Custom:SurfaceRepeatButton.Style> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1275 |
</Custom:SurfaceRepeatButton> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1276 |
</Custom:SurfaceTrack.IncreaseRepeatButton> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1277 |
<Custom:SurfaceTrack.Thumb> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1278 |
<Custom:SurfaceThumb x:Name="Thumb" HorizontalAlignment="Center" Margin="0,0,1,0" MinHeight="30" MinWidth="30" Width="30" Height="30" Foreground="Black" SnapsToDevicePixels="True"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1279 |
<Custom:SurfaceThumb.Style> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1280 |
<Style TargetType="{x:Type Custom:SurfaceThumb}"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1281 |
<Setter Property="Background" Value="Transparent"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1282 |
<Setter Property="Custom:ContactVisualizer.Adapter"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1283 |
<Setter.Value> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1284 |
<Custom:ContactVisualizerRectangleAdapter RadiusX="15" RadiusY="15"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1285 |
</Setter.Value> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1286 |
</Setter> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1287 |
<Setter Property="Template"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1288 |
<Setter.Value> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1289 |
<ControlTemplate TargetType="{x:Type Custom:SurfaceThumb}"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1290 |
<ControlTemplate.Resources> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1291 |
<Storyboard x:Key="Press"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1292 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1293 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1294 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1295 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1296 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1297 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1298 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1299 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1300 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1301 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1302 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1303 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1304 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1305 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1306 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1307 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1308 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1309 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1310 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1311 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1312 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1313 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1314 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1315 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1316 |
</Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1317 |
<Storyboard x:Key="Release"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1318 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1319 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1320 |
<SplineDoubleKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1321 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1322 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1323 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1324 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="2"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1325 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1326 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1327 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1328 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="5"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1329 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1330 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1331 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1332 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="5"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1333 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1334 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1335 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1336 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="6"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1337 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1338 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1339 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1340 |
<SplineDoubleKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1341 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1342 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1343 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1344 |
<SplineDoubleKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1345 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1346 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1347 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1348 |
<SplineDoubleKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1349 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1350 |
</Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1351 |
</ControlTemplate.Resources> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1352 |
<Grid x:Name="Grid" Margin="1" SnapsToDevicePixels="True" Background="Transparent"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1353 |
<Rectangle x:Name="Base" Fill="{TemplateBinding Background}" Stroke="{x:Null}" StrokeThickness="0" RadiusX="15" RadiusY="15" HorizontalAlignment="Stretch" Margin="5" VerticalAlignment="Stretch" Width="Auto" Height="Auto" SnapsToDevicePixels="True"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1354 |
<Rectangle x:Name="Button" Fill="#33A4B4BD" RadiusX="15" RadiusY="15" HorizontalAlignment="Stretch" Margin="5" VerticalAlignment="Stretch" Width="Auto" Height="Auto" SnapsToDevicePixels="True"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1355 |
<Rectangle.Stroke> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1356 |
<LinearGradientBrush EndPoint="0,0" StartPoint="0,1"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1357 |
<GradientStop Color="#66000000" Offset="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1358 |
<GradientStop Color="#33000000" Offset="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1359 |
</LinearGradientBrush> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1360 |
</Rectangle.Stroke> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1361 |
</Rectangle> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1362 |
<Rectangle x:Name="RenderOverlay" StrokeThickness="1" RadiusX="15" RadiusY="15" HorizontalAlignment="Stretch" Margin="6" VerticalAlignment="Stretch" Width="Auto" Height="Auto" Opacity="1" SnapsToDevicePixels="True"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1363 |
<Rectangle.Stroke> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1364 |
<LinearGradientBrush EndPoint="0,1" StartPoint="0,0"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1365 |
<GradientStop Color="#7FFFFFFF" Offset="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1366 |
<GradientStop Color="#0CFFFFFF" Offset="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1367 |
</LinearGradientBrush> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1368 |
</Rectangle.Stroke> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1369 |
<Rectangle.Fill> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1370 |
<LinearGradientBrush EndPoint="0.5,0" StartPoint="0.5,1"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1371 |
<GradientStop Color="#26000000" Offset="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1372 |
<GradientStop Color="#4CFFFFFF" Offset="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1373 |
</LinearGradientBrush> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1374 |
</Rectangle.Fill> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1375 |
</Rectangle> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1376 |
<Microsoft_Surface_Presentation_Generic:SurfaceShadowChrome x:Name="GlowBorder" HorizontalAlignment="Stretch" Margin="2" VerticalAlignment="Stretch" Width="Auto" Height="Auto" Opacity="0" Color="White" CornerRadius="{Binding Path=ActualHeight, ElementName=GlowBorder}"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1377 |
<Rectangle x:Name="Contact" Fill="Transparent" Stroke="{x:Null}"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1378 |
</Grid> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1379 |
<ControlTemplate.Triggers> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1380 |
<Trigger Property="IsFocused" Value="True"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1381 |
<Trigger Property="IsEnabled" Value="False"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1382 |
<Setter Property="Fill" TargetName="Button" Value="#00000000"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1383 |
<Setter Property="Fill" TargetName="RenderOverlay" Value="#00000000"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1384 |
<Setter Property="Stroke" TargetName="Button" Value="#33000000"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1385 |
<Setter Property="Opacity" TargetName="RenderOverlay" Value="0.5"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1386 |
</Trigger> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1387 |
<Trigger Property="IsDragging" Value="True"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1388 |
<Trigger.EnterActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1389 |
<BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1390 |
<Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1391 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1392 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1393 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1394 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1395 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1396 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1397 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1398 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1399 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1400 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1401 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1402 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1403 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1404 |
<SplineThicknessKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1405 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1406 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1407 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1408 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1409 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1410 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1411 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1412 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1413 |
<SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1414 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1415 |
</Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1416 |
</BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1417 |
</Trigger.EnterActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1418 |
<Trigger.ExitActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1419 |
<BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1420 |
<Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1421 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1422 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1423 |
<SplineDoubleKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1424 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1425 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="GlowBorder" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1426 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1427 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="2"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1428 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1429 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1430 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1431 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="5"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1432 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1433 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1434 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1435 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="5"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1436 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1437 |
<ThicknessAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(FrameworkElement.Margin)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1438 |
<SplineThicknessKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1439 |
<SplineThicknessKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="6"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1440 |
</ThicknessAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1441 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Base" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1442 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1443 |
<SplineDoubleKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1444 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1445 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Button" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1446 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1447 |
<SplineDoubleKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1448 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1449 |
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="RenderOverlay" Storyboard.TargetProperty="(UIElement.Opacity)"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1450 |
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1451 |
<SplineDoubleKeyFrame KeySpline="0.5,0.5,0.5,1" KeyTime="00:00:00.5000000" Value="1"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1452 |
</DoubleAnimationUsingKeyFrames> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1453 |
</Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1454 |
</BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1455 |
</Trigger.ExitActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1456 |
</Trigger> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1457 |
</ControlTemplate.Triggers> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1458 |
</ControlTemplate> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1459 |
</Setter.Value> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1460 |
</Setter> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1461 |
</Style> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1462 |
</Custom:SurfaceThumb.Style> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1463 |
</Custom:SurfaceThumb> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1464 |
</Custom:SurfaceTrack.Thumb> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1465 |
</Custom:SurfaceTrack> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1466 |
</Border> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1467 |
</Grid> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1468 |
<ControlTemplate.Triggers> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1469 |
<Trigger Property="TickPlacement" Value="TopLeft"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1470 |
<Setter Property="Visibility" TargetName="TopTick" Value="Visible"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1471 |
</Trigger> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1472 |
<Trigger Property="TickPlacement" Value="BottomRight"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1473 |
<Setter Property="Visibility" TargetName="BottomTick" Value="Visible"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1474 |
</Trigger> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1475 |
<Trigger Property="TickPlacement" Value="Both"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1476 |
<Setter Property="Visibility" TargetName="TopTick" Value="Visible"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1477 |
<Setter Property="Visibility" TargetName="BottomTick" Value="Visible"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1478 |
</Trigger> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1479 |
<Trigger Property="IsMoveToPointEnabled" Value="True"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1480 |
<Setter Property="Visibility" TargetName="SliderIncrease" Value="Collapsed"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1481 |
<Setter Property="Visibility" TargetName="SliderDecrease" Value="Collapsed"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1482 |
</Trigger> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1483 |
<Trigger Property="Custom:Contacts.IsAnyContactOrMouseCapturedWithin" SourceName="SliderIncrease" Value="True"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1484 |
<Trigger.EnterActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1485 |
<BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1486 |
<Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1487 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Width" To="19"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1488 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX" To="9"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1489 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY" To="9"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1490 |
</Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1491 |
</BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1492 |
</Trigger.EnterActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1493 |
<Trigger.ExitActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1494 |
<BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1495 |
<Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1496 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Width"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1497 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1498 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1499 |
</Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1500 |
</BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1501 |
</Trigger.ExitActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1502 |
<Setter Property="Fill" TargetName="TrackBkgd" Value="#661B2022"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1503 |
</Trigger> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1504 |
<Trigger Property="Custom:Contacts.IsAnyContactOrMouseCapturedWithin" SourceName="SliderDecrease" Value="True"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1505 |
<Trigger.EnterActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1506 |
<BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1507 |
<Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1508 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Width" To="19"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1509 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX" To="9"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1510 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY" To="9"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1511 |
</Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1512 |
</BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1513 |
</Trigger.EnterActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1514 |
<Trigger.ExitActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1515 |
<BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1516 |
<Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1517 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Width"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1518 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1519 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1520 |
</Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1521 |
</BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1522 |
</Trigger.ExitActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1523 |
<Setter Property="Fill" TargetName="TrackBkgd" Value="#661B2022"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1524 |
</Trigger> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1525 |
<MultiTrigger> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1526 |
<MultiTrigger.Conditions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1527 |
<Condition Property="IsMoveToPointEnabled" Value="True"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1528 |
<Condition Property="IsAnyContactCaptured" Value="True"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1529 |
<Condition Property="Custom:Contacts.IsAnyContactOrMouseCapturedWithin" SourceName="Thumb" Value="True"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1530 |
</MultiTrigger.Conditions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1531 |
<MultiTrigger.ExitActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1532 |
<BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1533 |
<Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1534 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Width"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1535 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1536 |
<DoubleAnimation Duration="00:00:00.2000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1537 |
</Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1538 |
</BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1539 |
</MultiTrigger.ExitActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1540 |
<MultiTrigger.EnterActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1541 |
<BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1542 |
<Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1543 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="Width" To="19"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1544 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusX" To="9"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1545 |
<DoubleAnimation Duration="00:00:00.1000000" Storyboard.TargetName="TrackBkgd" Storyboard.TargetProperty="RadiusY" To="9"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1546 |
</Storyboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1547 |
</BeginStoryboard> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1548 |
</MultiTrigger.EnterActions> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1549 |
</MultiTrigger> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1550 |
<Trigger Property="IsEnabled" Value="False"> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1551 |
<Setter Property="Foreground" TargetName="Thumb" Value="#A5333333"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1552 |
<Setter Property="Fill" TargetName="TrackBkgd" Value="#00000000"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1553 |
<Setter Property="Opacity" TargetName="TrackBkgd" Value="0.35"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1554 |
<Setter Property="Margin" TargetName="Thumb" Value="0"/> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1555 |
</Trigger> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1556 |
</ControlTemplate.Triggers> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1557 |
</ControlTemplate> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1558 |
</Setter.Value> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1559 |
</Setter> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1560 |
</Trigger> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1561 |
</Style.Triggers> |
d70ee2002f75
Thumb Timeline Rotation and Debug Closing Panels
ARIAS Santiago
parents:
165
diff
changeset
|
1562 |
</Style> |
146 | 1563 |
</UserControl.Resources> |
10 | 1564 |
|
146 | 1565 |
<Grid x:Name="LayoutRoot" Width="Auto" Height="Auto" Background="{x:Null}"> |
1566 |
<Custom:SurfaceSlider Height="Auto" x:Name="slider" Value="0.5" Width="Auto" |
|
92 | 1567 |
Thumb.DragStarted="sliderPosition_DragStarted" Thumb.DragCompleted="sliderPosition_DragCompleted" ContactTapGesture="slider_ContactTapGesture" Background="#19FFFFFF" Style="{DynamicResource FingersDance.Control.Slider}" /> |
175
1d4b6d6474d5
Visual change for the annotations to be as close as possible to the cursor's timeline.
cavaliet
parents:
168
diff
changeset
|
1568 |
<vw:TimelineView x:Name="tv" Margin="0,5,0,0" Background="{x:Null}" /> |
151
5f011a5ce421
update characters because merge made strange things with encoding.
cavaliet
parents:
146
diff
changeset
|
1569 |
<popup:UserControlClose x:Name="confirmCancelPopup" Question="Êtes-vous de sûr de vouloir effacer cette annotation ?" Visibility="Hidden" ConfirmYesOrNo="confirmCancelPopup_ConfirmYesOrNo" /> |
69 | 1570 |
</Grid> |
10 | 1571 |
</UserControl> |