Skip to main content
Home Forums Silverlight Design Video and Media PLAYER CONTROLS IN FULL SCREEN MODE
7 replies. Latest Post by coolshri on June 20, 2009.
(0)
cse.rasheed
Member
0 points
4 Posts
05-11-2009 11:29 PM |
Hi,
when i switch to fullscreen mode of media player, i want to show the player controls(play,pause,stop...) at bottom of the page. I have googled for it, but everybody is telling abt resizing the media element to full screen but i didnt find any for this issue...
Can anybody help me by giving simple code example.
Many Thanks,
Cse
brightstar
406 points
184 Posts
05-12-2009 3:41 PM |
No code example
Try to put your controls into stack panel ( as I remember in Blend IDE, was such sign as "lock" , I think using this you can do the result which you want )
lock it =)
05-12-2009 11:22 PM |
Thanks Bright Star. I tried to lock it but it doesnt work. Experts please help me.. Thanks, Cse
FuryDiamond
Contributor
3880 points
766 Posts
05-13-2009 11:44 AM |
You could try placing the items in a DockPanel and having the controls in a single container that is docked in the bottom panel. If you place this before the MediaElement and set the Dock's LastChildFill property to true, that will allow you to dynamically maintain the size.
05-13-2009 12:28 PM |
Thanks for your reply. But I couldn't fix it. Can you please do the changes to the below XAML
I will be very thankful to you.
Thanks,
<?xml version="1.0" encoding="utf-8"?><Canvas xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="800" Height="600" Background="#00FFFFFF"> <Canvas.Resources> <Storyboard x:Name="PlayButton_MouseEnter" > <DoubleAnimationUsingKeyFrames Storyboard.TargetName="Arrow" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.75"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="Arrow" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[3].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFBABABA"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FFD5D7D9"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="GradientFill" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[3].(GradientStop.Offset)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.231"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0.236"/> </DoubleAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFill" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[3].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF9299A6"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF3E4F6D"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFill" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF172541"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF050A13"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="GradientFill" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Offset)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.958786"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0.952"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="Arrow" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1.1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="Arrow" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1.1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="GradientFill" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Offset)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> </DoubleAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFill" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFFFFFFF"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FFBFC2C7"/> </ColorAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="PlayButton_MouseLeave"> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="Arrow" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0.75"/> </DoubleAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="Arrow" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[3].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFD5D7D9"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FFBABABA"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="GradientFill" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[3].(GradientStop.Offset)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.236"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0.231"/> </DoubleAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFill" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[3].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF3E4F6D"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF9299A6"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFill" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF050A13"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF172541"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="GradientFill" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Offset)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.952"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0.958786"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="Arrow" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1.1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="Arrow" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1.1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="GradientFill" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Offset)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> </DoubleAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFill" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFBFC2C7"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FFFFFFFF"/> </ColorAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="PlayButton_MouseDown"> <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[3].(GradientStop.Offset)" Storyboard.TargetName="GradientFill"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.236"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0.236"/> </DoubleAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[3].(GradientStop.Color)" Storyboard.TargetName="GradientFill"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF3E4F6D"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FF2F3E59"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)" Storyboard.TargetName="GradientFill"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF050A13"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FF050A13"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Offset)" Storyboard.TargetName="GradientFill"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.952"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0.952"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Offset)" Storyboard.TargetName="GradientFill"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0"/> </DoubleAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)" Storyboard.TargetName="GradientFill"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFBFC2C7"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FFBFC2C7"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="Arrow" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1.1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0.9"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="Arrow" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1.1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0.9"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="Arrow" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0.5"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="PlayButton_MouseUp"> <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[3].(GradientStop.Offset)" Storyboard.TargetName="GradientFill"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.236"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0.236"/> </DoubleAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[3].(GradientStop.Color)" Storyboard.TargetName="GradientFill"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF2F3E59"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FF3E4F6D"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)" Storyboard.TargetName="GradientFill"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF050A13"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FF050A13"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Offset)" Storyboard.TargetName="GradientFill"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.952"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0.952"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Offset)" Storyboard.TargetName="GradientFill"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0"/> </DoubleAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)" Storyboard.TargetName="GradientFill"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFBFC2C7"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FFBFC2C7"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="Arrow" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.9"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="1.1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="Arrow" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.9"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="1.1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="Arrow" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.5"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="1"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="PauseButton_MouseEnter" > <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFill1" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF172541"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF050A13"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="GradientFill1" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Offset)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> </DoubleAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFill1" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFFFFFFF"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FFBFC2C7"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFill1" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF9299A6"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF3E4F6D"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="PauseIcon" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.75"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="PauseIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1.1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="PauseIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1.1"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="PauseButton_MouseLeave"> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFill1" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF050A13"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF172541"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="GradientFill1" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Offset)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> </DoubleAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFill1" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFBFC2C7"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FFFFFFFF"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFill1" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF3E4F6D"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF9299A6"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="PauseIcon" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0.75"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="PauseIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1.1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="PauseIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1.1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="PauseButton_MouseDown"> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)" Storyboard.TargetName="GradientFill1"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF050A13"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FF050A13"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Offset)" Storyboard.TargetName="GradientFill1"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0"/> </DoubleAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)" Storyboard.TargetName="GradientFill1"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFBFC2C7"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FFBFC2C7"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)" Storyboard.TargetName="GradientFill1"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF3E4F6D"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FF2F3E59"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="PauseIcon" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0.5"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="PauseIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1.1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0.9"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="PauseIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1.1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0.9"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="PauseButton_MouseUp"> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)" Storyboard.TargetName="GradientFill1"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF050A13"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FF050A13"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Offset)" Storyboard.TargetName="GradientFill1"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0"/> </DoubleAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)" Storyboard.TargetName="GradientFill1"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFBFC2C7"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FFBFC2C7"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)" Storyboard.TargetName="GradientFill1"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF2F3E59"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FF3E4F6D"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="PauseIcon" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.5"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="PauseIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.9"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="1.1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="PauseIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.9"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="1.1"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="StopButton_MouseEnter" > <DoubleAnimationUsingKeyFrames Storyboard.TargetName="StopIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1.1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="StopIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1.1"/> </DoubleAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillStop" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFFFFFFF"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FFBFC2C7"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillStop" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF9299A6"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF3E4F6D"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillStop" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF172541"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF050A13"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="StopIcon" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.75"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="StopButton_MouseLeave"> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="StopIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1.1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="StopIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1.1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillStop" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFBFC2C7"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FFFFFFFF"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillStop" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF3E4F6D"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF9299A6"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillStop" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF050A13"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF172541"/> </ColorAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="StopButton_MouseDown" > <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)" Duration="00:00:00.0010000" Storyboard.TargetName="GradientFillStop"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFBFC2C7"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)" Storyboard.TargetName="GradientFillStop"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF3E4F6D"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FF2F3E59"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)" Duration="00:00:00.0010000" Storyboard.TargetName="GradientFillStop"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF050A13"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="StopIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1.1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0.9"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="StopIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1.1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0.9"/> </DoubleAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="StopIcon" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[3].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFBABABA"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FFBABABA"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="StopIcon" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0.5"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="StopButton_MouseUp"> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)" Duration="00:00:00.0010000" Storyboard.TargetName="GradientFillStop"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFBFC2C7"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)" Storyboard.TargetName="GradientFillStop"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF2F3E59"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FF3E4F6D"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)" Duration="00:00:00.0010000" Storyboard.TargetName="GradientFillStop"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF050A13"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="StopIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.9"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="1.1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="StopIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.9"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="1.1"/> </DoubleAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="StopIcon" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[3].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFBABABA"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FFBABABA"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="StopIcon" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.5"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="1"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="NextButton_MouseEnter" > <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillNext" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF172541"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF050A13"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillNext" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF9299A6"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF3E4F6D"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillNext" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFFFFFFF"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FFBFC2C7"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="NextIcon" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.75"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="NextIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1.1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="NextIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1.1"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="NextButton_MouseLeave"> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillNext" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF050A13"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF172541"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillNext" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF3E4F6D"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF9299A6"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillNext" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFBFC2C7"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FFFFFFFF"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="NextIcon" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0.75"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="NextIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1.1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="NextIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1.1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="NextButton_MouseDown" > <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)" Storyboard.TargetName="GradientFillNext"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF050A13"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FF050A13"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)" Storyboard.TargetName="GradientFillNext"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF3E4F6D"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FF2F3E59"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)" Storyboard.TargetName="GradientFillNext"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFBFC2C7"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FFBFC2C7"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="NextIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1.1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0.9"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="NextIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1.1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0.9"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="NextIcon" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0.75"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="NextButton_MouseUp"> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)" Storyboard.TargetName="GradientFillNext"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF050A13"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FF050A13"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)" Storyboard.TargetName="GradientFillNext"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF2F3E59"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FF3E4F6D"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)" Storyboard.TargetName="GradientFillNext"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFBFC2C7"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FFBFC2C7"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="NextIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.9"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="1.1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="NextIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.9"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="1.1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="NextIcon" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.75"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="1"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="PreviousButton_MouseEnter" > <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillPrevious" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF172541"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF050A13"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillPrevious" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF9299A6"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF3E4F6D"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillPrevious" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFFFFFFF"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FFBFC2C7"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="PreviousIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1.1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="PreviousIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1.1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="PreviousIcon" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.75"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="PreviousButton_MouseLeave"> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillPrevious" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF050A13"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF172541"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillPrevious" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF3E4F6D"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF9299A6"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillPrevious" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFBFC2C7"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FFFFFFFF"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="PreviousIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1.1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="PreviousIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1.1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="PreviousIcon" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0.75"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="PreviousButton_MouseDown" > <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)" Storyboard.TargetName="GradientFillPrevious"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF050A13"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FF050A13"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)" Storyboard.TargetName="GradientFillPrevious"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF3E4F6D"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FF2F3E59"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)" Storyboard.TargetName="GradientFillPrevious"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFBFC2C7"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FFBFC2C7"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="PreviousIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1.1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0.9"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="PreviousIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1.1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0.9"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="PreviousIcon" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0.5"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="PreviousButton_MouseUp"> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)" Storyboard.TargetName="GradientFillPrevious"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF050A13"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FF050A13"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)" Storyboard.TargetName="GradientFillPrevious"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF2F3E59"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FF3E4F6D"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)" Storyboard.TargetName="GradientFillPrevious"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFBFC2C7"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FFBFC2C7"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="PreviousIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleX)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.9"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="1.1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="PreviousIcon" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[0].(ScaleTransform.ScaleY)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.9"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="1.1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="PreviousIcon" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0.5"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="1"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="VolumeDownButton_MouseEnter" > <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillVolumeDown" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFFFFFFF"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FFBFC2C7"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillVolumeDown" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF9299A6"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF3E4F6D"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillVolumeDown" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF172541"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF050A13"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="VolumeDownIcon" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="VolumeDownButton_MouseLeave" > <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillVolumeDown" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFBFC2C7"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FFFFFFFF"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillVolumeDown" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF3E4F6D"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF9299A6"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillVolumeDown" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF050A13"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF172541"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="VolumeDownIcon" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="VolumeDownButton_MouseDown" > <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)" Storyboard.TargetName="GradientFillVolumeDown"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFBFC2C7"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FFBFC2C7"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)" Storyboard.TargetName="GradientFillVolumeDown"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF3E4F6D"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FF2F3E59"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)" Storyboard.TargetName="GradientFillVolumeDown"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF050A13"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FF050A13"/> </ColorAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="VolumeDownIcon" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0.5"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="VolumeUpButton_MouseEnter" > <DoubleAnimationUsingKeyFrames Storyboard.TargetName="VolumeUpIcon" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillVolumeUp" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFFFFFFF"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FFBFC2C7"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillVolumeUp" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF172541"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF050A13"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillVolumeUp" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF9299A6"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF3E4F6D"/> </ColorAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="VolumeUpButton_MouseLeave" > <DoubleAnimationUsingKeyFrames Storyboard.TargetName="VolumeUpIcon" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0.75"/> </DoubleAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillVolumeUp" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFBFC2C7"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FFFFFFFF"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillVolumeUp" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF050A13"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF172541"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillVolumeUp" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF3E4F6D"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#FF9299A6"/> </ColorAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="VolumeUpButton_MouseDown" > <DoubleAnimationUsingKeyFrames Storyboard.TargetName="VolumeUpIcon" Storyboard.TargetProperty="(UIElement.Opacity)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.0250000" Value="0.5"/> </DoubleAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="GradientFillVolumeUp" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[4].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF3E4F6D"/> <SplineColorKeyFrame KeyTime="00:00:00.0250000" Value="#FF2F3E59"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)" Duration="00:00:00.0010000" Storyboard.TargetName="GradientFillVolumeUp"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FFBFC2C7"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)" Duration="00:00:00.0010000" Storyboard.TargetName="GradientFillVolumeUp"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#FF050A13"/> </ColorAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="ChapterArea_ScrollNext_MouseEnter" > <ColorAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollNext" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[2].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#4DBABABA"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#7FBABABA"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollNext" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[3].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#4DBABABA"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#7FBABABA"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollNext" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#4DFFFFFF"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#7FFFFFFF"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollNext" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#4DFFFFFF"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#7FFFFFFF"/> </ColorAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="ChapterArea_ScrollNext_MouseLeave" > <ColorAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollNext" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[2].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#7FBABABA"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#4DBABABA"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollNext" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[3].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#7FBABABA"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#4DBABABA"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollNext" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#7FFFFFFF"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#4DFFFFFF"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollNext" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#7FFFFFFF"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#4DFFFFFF"/> </ColorAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="ChapterArea_ScrollPrevious_MouseEnter" > <ColorAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollPrevious" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[3].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#4DBABABA"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#7FBABABA"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollPrevious" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[2].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#4DBABABA"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#7FBABABA"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollPrevious" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#4DFFFFFF"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#7FFFFFFF"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollPrevious" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#4DFFFFFF"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#7FFFFFFF"/> </ColorAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="ChapterArea_ScrollPrevious_MouseLeave" > <ColorAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollPrevious" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[3].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#7FBABABA"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#4DBABABA"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollPrevious" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[2].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#7FBABABA"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#4DBABABA"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollPrevious" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#7FFFFFFF"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#4DFFFFFF"/> </ColorAnimationUsingKeyFrames> <ColorAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollPrevious" Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)"> <SplineColorKeyFrame KeyTime="00:00:00" Value="#7FFFFFFF"/> <SplineColorKeyFrame KeyTime="00:00:00.1000000" Value="#4DFFFFFF"/> </ColorAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="BufferingArea_Buffering" BeginTime="0" RepeatBehavior="Forever"> <DoubleAnimation Storyboard.TargetName="BufferingArea" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[2].(RotateTransform.Angle)" To="360" Duration="0:0:02" /> </Storyboard> <Storyboard x:Name="ChapterArea_Show"> <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Opacity)" Storyboard.TargetName="ChapterArea"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> <SplineDoubleKeyFrame KeyTime="00:00:00.3000000" Value="1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="ChaptersArrowUp" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[2].(RotateTransform.Angle)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/> <SplineDoubleKeyFrame KeyTime="00:00:00.3000000" Value="-180"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="ChapterArea_Hide"> <DoubleAnimationUsingKeyFrames Storyboard.TargetProperty="(UIElement.Opacity)" Storyboard.TargetName="ChapterArea"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="1"/> <SplineDoubleKeyFrame KeyTime="00:00:00.3000000" Value="0"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="ChaptersArrowUp" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[2].(RotateTransform.Angle)"> <SplineDoubleKeyFrame KeyTime="00:00:00" Value="-180"/> <SplineDoubleKeyFrame KeyTime="00:00:00.3000000" Value="0"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="ChapterArea_ScrollAnimationStoryboard"> <DoubleAnimation x:Name="ChapterArea_ScrollAnimation" Storyboard.TargetName="ChapterArea_Scroll" Storyboard.TargetProperty="(Canvas.Left)" Duration="0:0:0.3" /> </Storyboard> <Storyboard x:Name="ChapterArea_ScrollItem1_MouseDown"> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollItem1" Storyboard.TargetProperty="(UIElement.RenderTransform).(TranslateTransform.X)"> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollItem1" Storyboard.TargetProperty="(UIElement.RenderTransform).(TranslateTransform.Y)"> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="ChapterArea_ScrollItem1_MouseUp"> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollItem1" Storyboard.TargetProperty="(UIElement.RenderTransform).(TranslateTransform.X)"> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollItem1" Storyboard.TargetProperty="(UIElement.RenderTransform).(TranslateTransform.Y)"> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="ChapterArea_ScrollItem2_MouseDown"> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollItem2" Storyboard.TargetProperty="(UIElement.RenderTransform).(TranslateTransform.X)"> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollItem2" Storyboard.TargetProperty="(UIElement.RenderTransform).(TranslateTransform.Y)"> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="ChapterArea_ScrollItem2_MouseUp"> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollItem2" Storyboard.TargetProperty="(UIElement.RenderTransform).(TranslateTransform.X)"> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollItem2" Storyboard.TargetProperty="(UIElement.RenderTransform).(TranslateTransform.Y)"> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="ChapterArea_ScrollItem3_MouseDown"> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollItem3" Storyboard.TargetProperty="(UIElement.RenderTransform).(TranslateTransform.X)"> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollItem3" Storyboard.TargetProperty="(UIElement.RenderTransform).(TranslateTransform.Y)"> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="ChapterArea_ScrollItem3_MouseUp"> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollItem3" Storyboard.TargetProperty="(UIElement.RenderTransform).(TranslateTransform.X)"> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollItem3" Storyboard.TargetProperty="(UIElement.RenderTransform).(TranslateTransform.Y)"> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="ChapterArea_ScrollItem4_MouseDown"> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollItem4" Storyboard.TargetProperty="(UIElement.RenderTransform).(TranslateTransform.X)"> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollItem4" Storyboard.TargetProperty="(UIElement.RenderTransform).(TranslateTransform.Y)"> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="ChapterArea_ScrollItem4_MouseUp"> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollItem4" Storyboard.TargetProperty="(UIElement.RenderTransform).(TranslateTransform.X)"> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollItem4" Storyboard.TargetProperty="(UIElement.RenderTransform).(TranslateTransform.Y)"> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="ChapterArea_ScrollItem5_MouseDown"> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollItem5" Storyboard.TargetProperty="(UIElement.RenderTransform).(TranslateTransform.X)"> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollItem5" Storyboard.TargetProperty="(UIElement.RenderTransform).(TranslateTransform.Y)"> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="1"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="ChapterArea_ScrollItem5_MouseUp"> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollItem5" Storyboard.TargetProperty="(UIElement.RenderTransform).(TranslateTransform.X)"> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> </DoubleAnimationUsingKeyFrames> <DoubleAnimationUsingKeyFrames Storyboard.TargetName="ChapterArea_ScrollItem5" Storyboard.TargetProperty="(UIElement.RenderTransform).(TranslateTransform.Y)"> <SplineDoubleKeyFrame KeyTime="00:00:00.1000000" Value="0"/> </DoubleAnimationUsingKeyFrames> </Storyboard> <Storyboard x:Name="PlaceholderImage_Show"/> <Storyboard x:Name="PlaceholderImage_Hide"/> <Storyboard x:Name="PlayButton_Disable"> <DoubleAnimation Storyboard.TargetName="PlayButton" Storyboard.TargetProperty="(UIElement.Opacity)" To="0.5" Duration="0:0:0.3" /> </Storyboard> <Storyboard x:Name="PlayButton_Enable"> <DoubleAnimation Storyboard.TargetName="PlayButton" Storyboard.TargetProperty="(UIElement.Opacity)" To="1.0" Duration="0:0:0.3" /> </Storyboard> <Storyboard x:Name="PauseButton_Disable"> <DoubleAnimation Storyboard.TargetName="PauseButton" Storyboard.TargetProperty="(UIElement.Opacity)" To="0.5" Duration="0:0:0.3" /> </Storyboard> <Storyboard x:Name="PauseButton_Enable"> <DoubleAnimation Storyboard.TargetName="PauseButton" Storyboard.TargetProperty="(UIElement.Opacity)" To="1.0" Duration="0:0:0.3" /> </Storyboard> <Storyboard x:Name="StopButton_Disable"/> <Storyboard x:Name="StopButton_Enable"/> <Storyboard x:Name="NextButton_Disable"> <DoubleAnimation Storyboard.TargetName="NextButton" Storyboard.TargetProperty="(UIElement.Opacity)" To="0.5" Duration="0:0:0.3" /> </Storyboard> <Storyboard x:Name="NextButton_Enable"> <DoubleAnimation Storyboard.TargetName="NextButton" Storyboard.TargetProperty="(UIElement.Opacity)" To="1.0" Duration="0:0:0.3" /> </Storyboard> <Storyboard x:Name="PreviousButton_Disable"> <DoubleAnimation Storyboard.TargetName="PreviousButton" Storyboard.TargetProperty="(UIElement.Opacity)" To="0.5" Duration="0:0:0.3" /> </Storyboard> <Storyboard x:Name="PreviousButton_Enable"> <DoubleAnimation Storyboard.TargetName="PreviousButton" Storyboard.TargetProperty="(UIElement.Opacity)" To="1.0" Duration="0:0:0.3" /> </Storyboard> </Canvas.Resources> <Image x:Name="bg" Width="800" Height="600" Source="Assets/bg.jpg" Stretch="Fill"/> <Image Width="800" Height="367" Source="Assets/player.png" Stretch="Fill" x:Name="playerBase" Canvas.Top="130"/> <Rectangle x:Name="frame" Width="800" Height="600" Stroke="#FF000000" Canvas.Top="0"/> <Canvas RenderTransformOrigin="0.5,0.5" x:Name="canvas" Height="451" Width="678" Canvas.Left="72" Canvas.Top="115"> <Canvas.RenderTransform> <TransformGroup> <ScaleTransform ScaleX="1" ScaleY="1"/> <SkewTransform AngleX="0" AngleY="0"/> <RotateTransform Angle="0"/> <TranslateTransform X="0" Y="0"/> </TransformGroup> </Canvas.RenderTransform> <MediaElement x:Name="VideoWindow" Width="424" Height="236" Canvas.Left="117" Canvas.Top="62" Clip="M1,13 C1,6.372583 6.372583,1 13,1 L411,1 C417.62742,1 423,6.372583 423,13 L423,224 C423,230.62742 417.62742,236 411,236 L13,236 C6.372583,236 1,230.62742 1,224 z" Source="media/silverlight.wmv" Stretch="Fill" /> <Image Width="151" Height="84" Source="Assets/center.png" Stretch="Fill" x:Name="center" Canvas.Top="281" Canvas.Left="262"/> <Canvas x:Name="VolumeUpButton" Width="17.2043" Height="18.2162" Canvas.Left="468" Canvas.Top="314" RenderTransformOrigin="0.5,0.5"> <Canvas.RenderTransform> <TransformGroup> <ScaleTransform ScaleX="1.3" ScaleY="1.3"/> <SkewTransform AngleX="0" AngleY="0"/> <RotateTransform Angle="0"/> <TranslateTransform X="0" Y="0"/> </TransformGroup> </Canvas.RenderTransform> <Path x:Name="GradientFillVolumeUp" Width="15.8699" Height="15.8699" Canvas.Left="0.667542" Canvas.Top="0.666962" Stretch="Fill" Data="F1 M 0.667542,8.60193C 0.667542,12.984 4.21948,16.5369 8.60254,16.5369L 8.60254,16.5369C 12.9846,16.5369 16.5375,12.984 16.5375,8.60193L 16.5375,8.60193C 16.5375,4.21988 12.9846,0.666962 8.60254,0.666962L 8.60254,0.666962C 4.21948,0.666962 0.667542,4.21988 0.667542,8.60193 Z "> <Path.Fill> <LinearGradientBrush StartPoint="0.500017,-5.76894e-006" EndPoint="0.500017,0.997131"> <GradientStop Color="#FFFFFFFF" Offset="0"/> <GradientStop Color="#FF172541" Offset="0.494659"/> <GradientStop Color="#FF0F1C2F" Offset="0.958786"/> <GradientStop Color="#FF0F1C2F" Offset="1"/> <GradientStop Color="#FF9299A6" Offset="0.232"/> </LinearGradientBrush> </Path.Fill> </Path> <Path x:Name="Path_30" Width="17.2043" Height="17.2043" Canvas.Left="-1.01924e-005" Canvas.Top="-1.01924e-005" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#8020212E" Data="F1 M 16.5376,8.60162C 16.5376,12.9847 12.9846,16.5376 8.60266,16.5376C 4.21954,16.5376 0.666656,12.9847 0.666656,8.60162C 0.666656,4.21957 4.21954,0.666656 8.60266,0.666656C 12.9846,0.666656 16.5376,4.21957 16.5376,8.60162 Z "/> <Path x:Name="Path_31" Width="16.6635" Height="16.5754" Canvas.Left="0.279653" Canvas.Top="0.31545" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#34030305" Data="F1 M 16.2765,8.60364C 16.2765,12.8114 12.8448,16.2242 8.61295,16.2242C 4.37708,16.2242 0.94632,12.8114 0.94632,8.60364C 0.94632,4.39383 4.37708,0.982117 8.61295,0.982117C 12.8448,0.982117 16.2765,4.39383 16.2765,8.60364 Z "/> <Path x:Name="Path_32" Width="13.9532" Height="17.5062" Canvas.Left="0.666565" Canvas.Top="0.710022" Stretch="Fill" Data="F1 M 2.52411,18.2162C 2.52411,18.2162 2.63528,18.2022 2.77545,18.087L 2.2287,18.087C 2.41498,18.1721 2.52411,18.2162 2.52411,18.2162 Z M 8.60254,0.710022C 4.21948,0.710022 0.666565,4.26395 0.666565,8.64499C 0.666565,10.9191 1.62787,12.964 3.16101,14.4109C 3.13898,14.2788 3.12195,14.1536 3.09491,14.0124C 2.37793,10.1661 7.4259,8.86227 10.9227,7.08383C 13.3601,5.84512 14.2744,4.42416 14.6198,3.48087C 13.1648,1.78751 11.0118,0.710022 8.60254,0.710022 Z "> <Path.Fill> <LinearGradientBrush StartPoint="0.445282,-0.299477" EndPoint="0.445282,1.00002"> <GradientStop Color="#34F6F6F5" Offset="0"/> <GradientStop Color="#34FFFFFF" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> <Path x:Name="VolumeUpIcon" Width="6.15753" Height="6.18256" Canvas.Left="5.63239" Canvas.Top="5.50565" Stretch="Fill" Data="F1 M 8.2951,5.50565L 8.2951,8.18134L 5.63239,8.18134L 5.63239,9.01251L 8.2951,9.01251L 8.2951,11.6882L 9.12726,11.6882L 9.12726,9.01251L 11.7899,9.01251L 11.7899,8.18134L 9.12726,8.18134L 9.12726,5.50565L 8.2951,5.50565 Z " Opacity="0.995"> <Path.Fill> <LinearGradientBrush StartPoint="0.50003,0.183948" EndPoint="0.50003,1.18163"> <GradientStop Color="#FFFFFFFF" Offset="0"/> <GradientStop Color="#FFFFFFFF" Offset="0.219849"/> <GradientStop Color="#FFBABABA" Offset="0.882446"/> <GradientStop Color="#FFBABABA" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> </Canvas> <Canvas x:Name="VolumeDownButton" Width="17.2053" Height="17.2043" Canvas.Left="428" Canvas.Top="314" RenderTransformOrigin="0.5,0.5"> <Canvas.RenderTransform> <TransformGroup> <ScaleTransform ScaleX="1.3" ScaleY="1.3"/> <SkewTransform AngleX="0" AngleY="0"/> <RotateTransform Angle="0"/> <TranslateTransform X="0" Y="0"/> </TransformGroup> </Canvas.RenderTransform> <Path x:Name="GradientFillVolumeDown" Width="15.8719" Height="15.8699" Canvas.Left="0.667145" Canvas.Top="0.666962" Stretch="Fill" Data="F1 M 0.667145,8.60193C 0.667145,12.984 4.22006,16.5369 8.60211,16.5369L 8.60211,16.5369C 12.9861,16.5369 16.5391,12.984 16.5391,8.60193L 16.5391,8.60193C 16.5391,4.21988 12.9861,0.666962 8.60211,0.666962L 8.60211,0.666962C 4.22006,0.666962 0.667145,4.21988 0.667145,8.60193 Z "> <Path.Fill> <LinearGradientBrush StartPoint="0.499984,-5.76894e-006" EndPoint="0.499984,0.997131"> <GradientStop Color="#FFFFFFFF" Offset="0"/> <GradientStop Color="#FF172541" Offset="0.494659"/> <GradientStop Color="#FF0F1C2F" Offset="0.958786"/> <GradientStop Color="#FF0F1C2F" Offset="1"/> <GradientStop Color="#FF9299A6" Offset="0.227"/> </LinearGradientBrush> </Path.Fill> </Path> <Path x:Name="Path_37" Width="17.2052" Height="17.2043" Canvas.Left="-1.01924e-005" Canvas.Top="-1.01924e-005" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#8020212E" Data="F1 M 16.5386,8.60162C 16.5386,12.9847 12.9857,16.5376 8.6026,16.5376C 4.21957,16.5376 0.666656,12.9847 0.666656,8.60162C 0.666656,4.21957 4.21957,0.666656 8.6026,0.666656C 12.9857,0.666656 16.5386,4.21957 16.5386,8.60162 Z "/> <Rectangle x:Name="VolumeDownIcon" Width="6.15952" Height="0.831177" Canvas.Left="5.35461" Canvas.Top="8.18134" Stretch="Fill" Opacity="1"> <Rectangle.Fill> <LinearGradientBrush StartPoint="0.499884,0.183324" EndPoint="0.499884,1.18112"> <GradientStop Color="#FFFFFFFF" Offset="0"/> <GradientStop Color="#FFFFFFFF" Offset="0.219849"/> <GradientStop Color="#FFBABABA" Offset="0.882446"/> <GradientStop Color="#FFBABABA" Offset="1"/> </LinearGradientBrush> </Rectangle.Fill> </Rectangle> <Path x:Name="Path_39" Width="16.6635" Height="16.5754" Canvas.Left="0.279683" Canvas.Top="0.31545" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#34030305" Data="F1 M 16.2765,8.60364C 16.2765,12.8114 12.8448,16.2242 8.61295,16.2242C 4.37708,16.2242 0.94635,12.8114 0.94635,8.60364C 0.94635,4.39383 4.37708,0.982117 8.61295,0.982117C 12.8448,0.982117 16.2765,4.39383 16.2765,8.60364 Z "/> <Path x:Name="Path_40" Width="13.9533" Height="13.7009" Canvas.Left="0.667145" Canvas.Top="0.710022" Stretch="Fill" Data="F1 M 8.60312,0.710022C 4.22006,0.710022 0.667145,4.26395 0.667145,8.64499C 0.667145,10.9191 1.62848,12.964 3.16061,14.4109C 3.13956,14.2788 3.12155,14.1536 3.09552,14.0124C 2.37952,10.1661 7.42648,8.86227 10.9233,7.08383C 13.3617,5.84512 14.2759,4.42316 14.6204,3.48087C 13.1644,1.78653 11.0114,0.710022 8.60312,0.710022 Z "> <Path.Fill> <LinearGradientBrush StartPoint="0.409362,-0.455744" EndPoint="0.409362,1.4876"> <GradientStop Color="#34F6F6F5" Offset="0"/> <GradientStop Color="#34FFFFFF" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> </Canvas> <Canvas x:Name="CaptionToggleButton" Width="640" Height="480" Canvas.Left="0" Canvas.Top="0" Visibility="Collapsed"> <Path x:Name="Path" Width="26.313" Height="26.312" Canvas.Left="290.504" Canvas.Top="426.009" Stretch="Fill" Data="F1 M 316.817,439.163C 316.817,446.433 310.927,452.321 303.662,452.321C 296.394,452.321 290.504,446.433 290.504,439.163C 290.504,431.897 296.394,426.009 303.662,426.009C 310.927,426.009 316.817,431.897 316.817,439.163 Z "> <Path.Fill> <LinearGradientBrush StartPoint="0.500006,-8.11885e-006" EndPoint="0.500006,0.997109"> <GradientStop Color="#CDD3D3D3" Offset="0"/> <GradientStop Color="#CDFFFFFF" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> <Path x:Name="Path_0" Width="16.75" Height="16.75" Canvas.Left="295.221" Canvas.Top="430.087" Stretch="Fill" Data="F1 M 295.221,438.46C 295.221,443.088 298.971,446.837 303.597,446.837L 303.597,446.837C 308.222,446.837 311.971,443.088 311.971,438.46L 311.971,438.46C 311.971,433.836 308.222,430.087 303.597,430.087L 303.597,430.087C 298.971,430.087 295.221,433.836 295.221,438.46 Z "> <Path.Fill> <LinearGradientBrush StartPoint="0.499982,-5.46583e-006" EndPoint="0.499982,0.99709"> <GradientStop Color="#FFFFFFFF" Offset="0"/> <GradientStop Color="#FFFFFFFF" Offset="0.230331"/> <GradientStop Color="#FFCDD1D8" Offset="0.780899"/> <GradientStop Color="#FFCDD1D8" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> <Path x:Name="Path_1" Width="18.0833" Height="18.0833" Canvas.Left="294.554" Canvas.Top="429.42" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#B39191A1" Data="F1 M 311.971,438.461C 311.971,443.088 308.222,446.837 303.597,446.837C 298.971,446.837 295.221,443.088 295.221,438.461C 295.221,433.836 298.971,430.087 303.597,430.087C 308.222,430.087 311.971,433.836 311.971,438.461 Z "/> <Path x:Name="Path_2" Width="14.726" Height="18.477" Canvas.Left="295.221" Canvas.Top="430.132" Stretch="Fill" Data="F1 M 303.597,430.132C 298.971,430.132 295.221,433.883 295.221,438.507C 295.221,440.907 296.236,443.065 297.854,444.593C 297.83,444.453 297.812,444.321 297.783,444.172C 297.027,440.112 302.355,438.737 306.045,436.859C 308.617,435.552 309.583,434.052 309.947,433.057C 308.411,431.269 306.139,430.132 303.597,430.132 Z M 297.181,448.609C 297.181,448.609 297.299,448.594 297.446,448.473L 296.868,448.473C 297.064,448.562 297.181,448.609 297.181,448.609 Z "> <Path.Fill> <LinearGradientBrush StartPoint="0.445056,-0.299419" EndPoint="0.445056,1.00007"> <GradientStop Color="#34F6F6F5" Offset="0"/> <GradientStop Color="#34FFFFFF" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> <Path x:Name="Path_3" Width="3.98898" Height="5.77301" Canvas.Left="298.545" Canvas.Top="435.64" Stretch="Fill" Fill="#FF252E3A" Data="F1 M 301.639,439.265L 302.534,439.613C 302.393,440.237 302.16,440.694 301.836,440.982C 301.51,441.27 301.112,441.413 300.635,441.413C 300.039,441.413 299.555,441.184 299.184,440.724C 298.758,440.194 298.545,439.478 298.545,438.577C 298.545,437.624 298.76,436.879 299.19,436.341C 299.563,435.873 300.065,435.64 300.696,435.64C 301.209,435.64 301.639,435.816 301.985,436.166C 302.231,436.415 302.41,436.786 302.526,437.277L 301.612,437.542C 301.553,437.24 301.436,437.008 301.262,436.847C 301.088,436.686 300.883,436.605 300.647,436.605C 300.307,436.605 300.032,436.752 299.819,437.046C 299.604,437.34 299.498,437.827 299.498,438.504C 299.498,439.206 299.602,439.706 299.811,440.003C 300.018,440.3 300.289,440.449 300.621,440.449C 300.866,440.449 301.076,440.354 301.254,440.165C 301.432,439.976 301.559,439.676 301.639,439.265 Z "/> <Path x:Name="Path_4" Width="3.98898" Height="5.77301" Canvas.Left="304.252" Canvas.Top="435.64" Stretch="Fill" Fill="#FF252E3A" Data="F1 M 307.346,439.265L 308.241,439.613C 308.102,440.237 307.869,440.694 307.543,440.982C 307.219,441.27 306.819,441.413 306.344,441.413C 305.746,441.413 305.264,441.184 304.893,440.724C 304.465,440.194 304.252,439.478 304.252,438.577C 304.252,437.624 304.467,436.879 304.897,436.341C 305.27,435.873 305.774,435.64 306.403,435.64C 306.916,435.64 307.346,435.816 307.692,436.166C 307.938,436.415 308.119,436.786 308.233,437.277L 307.319,437.542C 307.26,437.24 307.145,437.008 306.971,436.847C 306.795,436.686 306.59,436.605 306.354,436.605C 306.016,436.605 305.741,436.752 305.526,437.046C 305.313,437.34 305.205,437.827 305.205,438.504C 305.205,439.206 305.311,439.706 305.518,440.003C 305.727,440.3 305.996,440.449 306.33,440.449C 306.573,440.449 306.783,440.354 306.961,440.165C 307.139,439.976 307.268,439.676 307.346,439.265 Z "/> </Canvas> <Canvas x:Name="NextButton" Width="31.3605" Height="37.8252" Canvas.Left="221" Canvas.Top="302.892" RenderTransformOrigin="0.5,0.5"> <Canvas.RenderTransform> <TransformGroup> <ScaleTransform ScaleX="0.75" ScaleY="0.75"/> <SkewTransform AngleX="0" AngleY="0"/> <RotateTransform Angle="0"/> <TranslateTransform X="0" Y="0"/> </TransformGroup> </Canvas.RenderTransform> <Path x:Name="GradientFillNext" Width="29.2103" Height="29.2103" Canvas.Left="1.48405" Canvas.Top="5.52362" Stretch="Fill" Data="F1 M 1.48405,20.1288C 1.48405,28.1949 8.02107,34.7339 16.0882,34.7339L 16.0882,34.7339C 24.1544,34.7339 30.6944,28.1949 30.6944,20.1288L 30.6944,20.1288C 30.6944,12.0637 24.1544,5.52362 16.0882,5.52362L 16.0882,5.52362C 8.02107,5.52362 1.48405,12.0637 1.48405,20.1288 Z "> <Path.Fill> <LinearGradientBrush StartPoint="0.49998,2.08951e-006" EndPoint="0.49998,0.997097"> <GradientStop Color="#FFFFFFFF" Offset="0"/> <GradientStop Color="#FF172541" Offset="0.494659"/> <GradientStop Color="#FF0F1C2F" Offset="0.958786"/> <GradientStop Color="#FF0F1C2F" Offset="1"/> <GradientStop Color="#FF9299A6" Offset="0.236"/> </LinearGradientBrush> </Path.Fill> </Path> <Canvas Width="640" Height="480" x:Name="Clip" Clip="F1 M 0,2.77444L 31.3333,2.77444L 31.3333,36.1078L 0,36.1078L 0,2.77444 Z "> <Path x:Name="Path_43" Width="30.5437" Height="30.5437" Canvas.Left="0.816778" Canvas.Top="4.85695" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#8020212E" Data="F1 M 30.6938,20.1288C 30.6938,28.1959 24.1548,34.7339 16.0886,34.7339C 8.02148,34.7339 1.48344,28.1959 1.48344,20.1288C 1.48344,12.0637 8.02148,5.52362 16.0886,5.52362C 24.1548,5.52362 30.6938,12.0637 30.6938,20.1288 Z "/> <Path x:Name="Path_44" Width="29.5503" Height="29.3871" Canvas.Left="1.32998" Canvas.Top="5.43575" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#34030305" Data="F1 M 30.2136,20.1298C 30.2136,27.8745 23.8959,34.1562 16.1051,34.1562C 8.31337,34.1562 1.99664,27.8745 1.99664,20.1298C 1.99664,12.3831 8.31337,6.10242 16.1051,6.10242C 23.8959,6.10242 30.2136,12.3831 30.2136,20.1298 Z "/> </Canvas> <Path x:Name="Path_46" Width="10.1434" Height="11.444" Canvas.Left="8.68764" Canvas.Top="14.2342" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#FF292D4F" Data="F1 M 9.37134,15.6852C 9.37134,16.2479 9.35431,23.1204 9.35431,23.9966C 9.35431,24.961 9.81795,25.2514 10.606,24.8108C 11.3951,24.3741 16.8887,21.1797 17.5897,20.7431C 18.2917,20.3035 18.3828,19.4584 17.6838,19.0438C 16.9168,18.5862 11.2579,15.4548 10.538,15.0563C 9.7809,14.6427 9.37134,15.1244 9.37134,15.6852 Z " Opacity="0"/> <Path x:Name="Path_48" Width="4.55079" Height="11.4583" Canvas.Left="19.001" Canvas.Top="14.2077" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#FF292D4F" Data="F1 M 22.8851,24.6458C 22.8851,24.8411 22.5166,24.9993 22.5166,24.9993L 20.0362,24.9993C 19.8329,24.9993 19.6677,24.8411 19.6677,24.6458L 19.6677,15.2278C 19.6677,15.0326 19.8329,14.8743 20.0362,14.8743L 22.5166,14.8743C 22.7209,14.8743 22.8851,15.0326 22.8851,15.2278L 22.8851,24.6458 Z " Opacity="0"/> <Path x:Name="Path_49" Width="25.68" Height="32.222" Canvas.Left="1.483" Canvas.Top="5.603" Stretch="Fill" Data="F1 M4.90076,37.8252 C4.90076,37.8252 5.10606,37.7982 5.3614,37.5889 L4.36003,37.5889 C4.70149,37.7461 4.90076,37.8252 4.90076,37.8252 z M16.0882,5.60272 C8.02208,5.60272 1.48305,12.1428 1.48305,20.2089 1.48305,24.3947 3.25348,28.1579 6.07239,30.8206 6.03333,30.5772 6.00029,30.3449 5.95122,30.0845 4.55629,22.6002 12.8738,21.1402 20.3601,17.3339 24.8463,15.0538 26.5286,12.4382 27.1635,10.7038 24.4858,7.58646 20.5213,5.60272 16.0882,5.60272 z"> <Path.Fill> <LinearGradientBrush StartPoint="0.461947,-0.000258589" EndPoint="0.461947,0.999998"> <GradientStop Color="#34F6F6F5" Offset="0"/> <GradientStop Color="#34FFFFFF" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> <Canvas x:Name="NextIcon" Width="12.877" Height="10.136" Canvas.Left="9.354" Canvas.Top="14.875" Opacity="0.75" RenderTransformOrigin="0.5,0.5"> <Canvas.RenderTransform> <TransformGroup> <ScaleTransform ScaleX="1" ScaleY="1"/> <SkewTransform AngleX="0" AngleY="0"/> <RotateTransform Angle="0"/> <TranslateTransform X="0" Y="0"/> </TransformGroup> </Canvas.RenderTransform> <Path x:Name="Path_45" Width="8.81032" Height="10.1108" Stretch="Fill" Data="F1 M 9.37096,15.6857C 9.37096,16.2474 9.35393,23.1209 9.35393,23.9961L 9.35393,23.9961C 9.35393,24.9604 9.81757,25.2509 10.6057,24.8112L 10.6057,24.8112C 11.3947,24.3747 16.8883,21.1802 17.5903,20.7426L 17.5903,20.7426C 18.2913,20.304 18.3824,19.4579 17.6844,19.0443L 17.6844,19.0443C 16.9164,18.5867 11.2576,15.4543 10.5376,15.0558L 10.5376,15.0558C 10.3393,14.9476 10.164,14.9006 10.0148,14.9006L 10.0148,14.9006C 9.59424,14.9006 9.37096,15.2721 9.37096,15.6857 Z " Canvas.Top="0.026"> <Path.Fill> <LinearGradientBrush StartPoint="0.500072,0.0154085" EndPoint="0.500072,0.980182"> <GradientStop Color="#FFFFFFFF" Offset="0"/> <GradientStop Color="#FFFFFFFF" Offset="0.219849"/> <GradientStop Color="#FFBABABA" Offset="0.882446"/> <GradientStop Color="#FFBABABA" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> <Path x:Name="Path_47" Width="2.563" Height="10.124" Stretch="Fill" Data="F1 M20.0357,14.8745 C19.8324,14.8745 19.6682,15.0327 19.6682,15.227 L19.6682,24.645 C19.6682,24.8413 19.8324,24.9985 20.0357,24.9985 L21.864984,24.9985 C21.864984,24.9985 22.232484,24.8413 22.232484,24.645 L22.232484,15.227 C22.232484,15.0327 22.068284,14.8745 21.864984,14.8745 L20.0357,14.8745 z" Opacity="0.995" Canvas.Left="10.314"> <Path.Fill> <LinearGradientBrush StartPoint="0.500019,0.0147735" EndPoint="0.500019,0.956204"> <GradientStop Color="#FFFFFFFF" Offset="0"/> <GradientStop Color="#FFFFFFFF" Offset="0.219849"/> <GradientStop Color="#FFBABABA" Offset="0.882446"/> <GradientStop Color="#FFBABABA" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> </Canvas> </Canvas> <Canvas x:Name="PreviousButton" Width="31.3553" Height="37.8252" Canvas.Left="181" Canvas.Top="302.892" RenderTransformOrigin="0.5,0.5"> <Canvas.RenderTransform> <TransformGroup> <ScaleTransform ScaleX="0.75" ScaleY="0.75"/> <SkewTransform AngleX="0" AngleY="0"/> <RotateTransform Angle="0"/> <TranslateTransform X="0" Y="0"/> </TransformGroup> </Canvas.RenderTransform> <Path x:Name="GradientFillPrevious" Width="29.2094" Height="29.2103" Canvas.Left="1.47906" Canvas.Top="5.52362" Stretch="Fill" Data="F1 M 1.47906,20.1288C 1.47906,28.1949 8.0161,34.7339 16.0832,34.7339L 16.0832,34.7339C 24.1494,34.7339 30.6884,28.1949 30.6884,20.1288L 30.6884,20.1288C 30.6884,12.0637 24.1494,5.52362 16.0832,5.52362L 16.0832,5.52362C 8.0161,5.52362 1.47906,12.0637 1.47906,20.1288 Z "> <Path.Fill> <LinearGradientBrush StartPoint="0.499991,2.08951e-006" EndPoint="0.499991,0.997097"> <GradientStop Color="#FFFFFFFF" Offset="0"/> <GradientStop Color="#FF172541" Offset="0.494659"/> <GradientStop Color="#FF0F1C2F" Offset="0.958786"/> <GradientStop Color="#FF0F1C2F" Offset="1"/> <GradientStop Color="#FF9299A6" Offset="0.236"/> </LinearGradientBrush> </Path.Fill> </Path> <Canvas Width="640" Height="480" x:Name="Clip_52"> <Path x:Name="Path_53" Width="30.5437" Height="30.5437" Canvas.Left="0.811605" Canvas.Top="4.85695" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#8020212E" Data="F1 M 30.6886,20.1288C 30.6886,28.1959 24.1496,34.7339 16.0834,34.7339C 8.0163,34.7339 1.47827,28.1959 1.47827,20.1288C 1.47827,12.0637 8.0163,5.52362 16.0834,5.52362C 24.1496,5.52362 30.6886,12.0637 30.6886,20.1288 Z "/> <Path x:Name="Path_54" Width="29.5503" Height="29.3871" Canvas.Left="1.32482" Canvas.Top="5.43575" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#34030305" Data="F1 M 30.2084,20.1298C 30.2084,27.8745 23.8907,34.1562 16.1,34.1562C 8.3082,34.1562 1.99149,27.8745 1.99149,20.1298C 1.99149,12.3831 8.3082,6.10242 16.1,6.10242C 23.8907,6.10242 30.2084,12.3831 30.2084,20.1298 Z "/> </Canvas> <Path x:Name="Path_56" Width="10.1434" Height="11.444" Canvas.Left="13.387" Canvas.Top="13.9203" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#FF292D4F" Data="F1 M 22.8467,15.3712C 22.8467,15.934 22.8637,22.8065 22.8637,23.6827C 22.8637,24.647 22.4001,24.9374 21.612,24.4968C 20.8229,24.0602 15.3293,20.8658 14.6283,20.4292C 13.9264,19.9896 13.8352,19.1444 14.5342,18.7299C 15.3013,18.2722 20.9601,15.1409 21.6801,14.7423C 22.4371,14.3288 22.8467,14.8104 22.8467,15.3712 Z " Opacity="0"/> <Path x:Name="Path_58" Width="4.55077" Height="11.4583" Canvas.Left="8.66625" Canvas.Top="13.8937" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#FF292D4F" Data="F1 M 9.33292,24.3319C 9.33292,24.5272 9.70142,24.6854 9.70142,24.6854L 12.1819,24.6854C 12.3851,24.6854 12.5504,24.5272 12.5504,24.3319L 12.5504,14.9139C 12.5504,14.7186 12.3851,14.5604 12.1819,14.5604L 9.70142,14.5604C 9.49715,14.5604 9.33292,14.7186 9.33292,14.9139L 9.33292,24.3319 Z " Opacity="0"/> <Path x:Name="Path_59" Width="25.681" Height="32.222" Canvas.Left="1.478" Canvas.Top="5.603" Stretch="Fill" Data="F1 M4.89578,37.8252 C4.89578,37.8252 5.10007,37.7982 5.35643,37.5889 L4.35403,37.5889 C4.6965,37.7461 4.89578,37.8252 4.89578,37.8252 z M16.0832,5.60272 C8.01711,5.60272 1.47807,12.1428 1.47807,20.2089 1.47807,24.3947 3.24751,28.1579 6.06741,30.8206 6.02835,30.5772 5.9953,30.3449 5.94623,30.0845 4.55133,22.6002 12.8688,21.1402 20.3541,17.3339 24.8403,15.0538 26.5237,12.4382 27.1585,10.7038 24.4798,7.58646 20.5164,5.60272 16.0832,5.60272 z"> <Path.Fill> <LinearGradientBrush StartPoint="0.470775,-0.000258589" EndPoint="0.470775,0.999998"> <GradientStop Color="#34F6F6F5" Offset="0"/> <GradientStop Color="#34FFFFFF" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> <Canvas x:Name="PreviousIcon" Width="13.164" Height="10.137" Canvas.Left="9.7" Canvas.Top="14.56" Opacity="0.75" RenderTransformOrigin="0.5,0.5"> <Canvas.RenderTransform> <TransformGroup> <ScaleTransform ScaleX="1" ScaleY="1"/> <SkewTransform AngleX="0" AngleY="0"/> <RotateTransform Angle="0"/> <TranslateTransform X="0" Y="0"/> </TransformGroup> </Canvas.RenderTransform> <Path x:Name="Path_55" Width="8.81006" Height="10.1103" Stretch="Fill" Data="F1 M 21.681,14.7423C 20.96,15.1409 15.3022,18.2722 14.5341,18.7309L 14.5341,18.7309C 13.8351,19.1444 13.9263,19.9896 14.6282,20.4292L 14.6282,20.4292C 15.3292,20.8668 20.8228,24.0592 21.6129,24.4968L 21.6129,24.4968C 22.4,24.9374 22.8636,24.646 22.8636,23.6827L 22.8636,23.6827C 22.8636,22.8055 22.8466,15.934 22.8466,15.3712L 22.8466,15.3712C 22.8466,14.9576 22.6233,14.5871 22.2027,14.5871L 22.2027,14.5871C 22.0535,14.5871 21.8793,14.6342 21.681,14.7423 Z " Canvas.Left="4.354" Canvas.Top="0.027"> <Path.Fill> <LinearGradientBrush StartPoint="0.499976,0.015364" EndPoint="0.499976,0.980182"> <GradientStop Color="#FFFFFFFF" Offset="0"/> <GradientStop Color="#FFFFFFFF" Offset="0.219849"/> <GradientStop Color="#FFBABABA" Offset="0.882446"/> <GradientStop Color="#FFBABABA" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> <Path x:Name="Path_57" Width="2.85" Height="10.125" Stretch="Fill" Data="F1 M10.29518,14.5601 C10.09189,14.5601 9.9276598,14.7193 9.9276598,14.9136 L9.9276598,24.3316 C9.9276598,24.5279 10.29518,24.6851 10.29518,24.6851 L12.1819,24.6851 C12.3851,24.6851 12.5504,24.5279 12.5504,24.3316 L12.5504,14.9136 C12.5504,14.7193 12.3851,14.5601 12.1819,14.5601 L9.70044,14.5601 z"> <Path.Fill> <LinearGradientBrush StartPoint="0.499986,0.0148233" EndPoint="0.499986,0.956157"> <GradientStop Color="#FFFFFFFF" Offset="0"/> <GradientStop Color="#FFFFFFFF" Offset="0.219849"/> <GradientStop Color="#FFBABABA" Offset="0.882446"/> <GradientStop Color="#FFBABABA" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> </Canvas> </Canvas> <Canvas x:Name="PauseButton" Width="32" Height="37.8252" Canvas.Left="370.776" Canvas.Top="316.892"> <Canvas.RenderTransform> <TransformGroup> <ScaleTransform ScaleX="0.95" ScaleY="0.95"/> <SkewTransform AngleX="0" AngleY="0"/> <RotateTransform Angle="0"/> <TranslateTransform X="0" Y="0"/> </TransformGroup> </Canvas.RenderTransform> <Path x:Name="GradientFill1" Width="29.2103" Height="29.2103" Canvas.Left="1.43099" Canvas.Top="5.52362" Stretch="Fill" Data="F1 M 1.43099,20.1288C 1.43099,28.1949 7.96802,34.7339 16.0352,34.7339L 16.0352,34.7339C 24.1013,34.7339 30.6413,28.1949 30.6413,20.1288L 30.6413,20.1288C 30.6413,12.0637 24.1013,5.52362 16.0352,5.52362L 16.0352,5.52362C 7.96802,5.52362 1.43099,12.0637 1.43099,20.1288 Z "> <Path.Fill> <LinearGradientBrush StartPoint="0.499975,2.08951e-006" EndPoint="0.499975,0.997097"> <GradientStop Color="#FFFFFFFF" Offset="0"/> <GradientStop Color="#FF172541" Offset="0.494659"/> <GradientStop Color="#FF0F1C2F" Offset="0.958786"/> <GradientStop Color="#FF0F1C2F" Offset="1"/> <GradientStop Color="#FF9299A6" Offset="0.236"/> </LinearGradientBrush> </Path.Fill> </Path> <Canvas Width="640" Height="480" x:Name="Clip_70" Clip="F1 M 0,2.77444L 32,2.77444L 32,36.1078L 0,36.1078L 0,2.77444 Z "> <Path x:Name="Path_71" Width="30.5437" Height="30.5437" Canvas.Left="0.763524" Canvas.Top="4.85695" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#8020212E" Data="F1 M 30.6405,20.1288C 30.6405,28.1959 24.1015,34.7339 16.0354,34.7339C 7.96822,34.7339 1.43019,28.1959 1.43019,20.1288C 1.43019,12.0637 7.96822,5.52362 16.0354,5.52362C 24.1015,5.52362 30.6405,12.0637 30.6405,20.1288 Z "/> </Canvas> <Path x:Name="OutlineLft" Width="4.29543" Height="11.4583" Canvas.Left="11.2171" Canvas.Top="14.2077" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#FF292D4F" Data="F1 M 14.8458,24.6458C 14.8458,24.8411 14.4773,24.9993 14.4773,24.9993L 12.2522,24.9993C 12.049,24.9993 11.8837,24.8411 11.8837,24.6458L 11.8837,15.2278C 11.8837,15.0326 12.049,14.8743 12.2522,14.8743L 14.4773,14.8743C 14.6816,14.8743 14.8458,15.0326 14.8458,15.2278L 14.8458,24.6458 Z " Opacity="0"/> <Path x:Name="OutlineRt" Width="4.29542" Height="11.4583" Canvas.Left="16.0103" Canvas.Top="14.2077" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#FF292D4F" Data="F1 M 19.639,24.6458C 19.639,24.8411 19.2705,24.9993 19.2705,24.9993L 17.0454,24.9993C 16.8422,24.9993 16.6769,24.8411 16.6769,24.6458L 16.6769,15.2278C 16.6769,15.0326 16.8422,14.8743 17.0454,14.8743L 19.2705,14.8743C 19.4748,14.8743 19.639,15.0326 19.639,15.2278L 19.639,24.6458 Z " RenderTransformOrigin="0.5,0.5" Opacity="0"> <Path.RenderTransform> <TransformGroup> <ScaleTransform ScaleX="1" ScaleY="1"/> <SkewTransform AngleX="0" AngleY="0"/> <RotateTransform Angle="0"/> <TranslateTransform X="0" Y="0"/> </TransformGroup> </Path.RenderTransform> </Path> <Path x:Name="Path_76" Width="29.5503" Height="29.3871" Canvas.Left="1.27673" Canvas.Top="5.43575" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#34030305" Data="F1 M 30.1604,20.1298C 30.1604,27.8745 23.8426,34.1562 16.0519,34.1562C 8.26012,34.1562 1.9434,27.8745 1.9434,20.1298C 1.9434,12.3831 8.26012,6.10242 16.0519,6.10242C 23.8426,6.10242 30.1604,12.3831 30.1604,20.1298 Z "/> <Path x:Name="Path_77" Width="25.681" Height="32.222" Canvas.Left="1.43" Canvas.Top="5.603" Stretch="Fill" Data="F1 M4.84771,37.8252 C4.84771,37.8252 5.05299,37.7982 5.30834,37.5889 L4.30596,37.5889 C4.64844,37.7461 4.84771,37.8252 4.84771,37.8252 z M16.0352,5.60272 C7.96902,5.60272 1.42999,12.1428 1.42999,20.2089 1.42999,24.3947 3.19943,28.1579 6.02033,30.8206 5.98028,30.5772 5.94723,30.3449 5.89816,30.0845 4.50323,22.6002 12.8207,21.1402 20.3061,17.3339 24.7923,15.0538 26.4756,12.4382 27.1105,10.7038 24.4328,7.58646 20.4683,5.60272 16.0352,5.60272 z"> <Path.Fill> <LinearGradientBrush StartPoint="0.464703,-0.000258589" EndPoint="0.464703,0.999998"> <GradientStop Color="#34F6F6F5" Offset="0"/> <GradientStop Color="#34FFFFFF" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> <Canvas x:Name="PauseIcon" Width="7.755" Height="10.124" Canvas.Left="11.884" Canvas.Top="14.874" Opacity="0.75" RenderTransformOrigin="0.5,0.5"> <Canvas.RenderTransform> <TransformGroup> <ScaleTransform ScaleX="1" ScaleY="1"/> <SkewTransform AngleX="0" AngleY="0"/> <RotateTransform Angle="0"/> <TranslateTransform X="0" Y="0"/> </TransformGroup> </Canvas.RenderTransform> <Path x:Name="Path_72" Width="2.96109" Height="10.124" Stretch="Fill" Data="F1 M 12.2529,14.8745C 12.0487,14.8745 11.8844,15.0327 11.8844,15.227L 11.8844,24.645C 11.8844,24.8413 12.0487,24.9985 12.2529,24.9985L 14.478,24.9985C 14.478,24.9985 14.8455,24.8413 14.8455,24.645L 14.8455,15.227C 14.8455,15.0327 14.6813,14.8745 14.478,14.8745L 12.2529,14.8745 Z "> <Path.Fill> <LinearGradientBrush StartPoint="0.499923,0.0147735" EndPoint="0.499923,0.956204"> <GradientStop Color="#FFFFFFFF" Offset="0"/> <GradientStop Color="#FFFFFFFF" Offset="0.219849"/> <GradientStop Color="#FFBABABA" Offset="0.882446"/> <GradientStop Color="#FFBABABA" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> <Path x:Name="Path_74" Width="2.96109" Height="10.124" Stretch="Fill" Data="F1 M 17.0456,14.8745C 16.8423,14.8745 16.678,15.0327 16.678,15.227L 16.678,24.645C 16.678,24.8413 16.8423,24.9985 17.0456,24.9985L 19.2706,24.9985C 19.2706,24.9985 19.6391,24.8413 19.6391,24.645L 19.6391,15.227C 19.6391,15.0327 19.4749,14.8745 19.2706,14.8745L 17.0456,14.8745 Z " Canvas.Left="4.794"> <Path.Fill> <LinearGradientBrush StartPoint="0.499961,0.0147735" EndPoint="0.499961,0.956204"> <GradientStop Color="#FFFFFFFF" Offset="0"/> <GradientStop Color="#FFFFFFFF" Offset="0.219849"/> <GradientStop Color="#FFBABABA" Offset="0.882446"/> <GradientStop Color="#FFBABABA" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> </Canvas> </Canvas> <Canvas x:Name="PlayButton" Width="41" Height="43" Canvas.Top="298" Canvas.Left="315" RenderTransformOrigin="0.5,0.5"> <Canvas.RenderTransform> <TransformGroup> <ScaleTransform ScaleX="1.35" ScaleY="1.35"/> <SkewTransform AngleX="0" AngleY="0"/> <RotateTransform Angle="0"/> <TranslateTransform X="0" Y="0"/> </TransformGroup> </Canvas.RenderTransform> <Path x:Name="GradientFill" Width="38.7475" Height="38.7465" Canvas.Left="0.432" Canvas.Top="1.493" Stretch="Fill" Data="F1 M 23.4324,438.867C 23.4324,449.566 32.1063,458.24 42.8061,458.24L 42.8061,458.24C 53.5049,458.24 62.1799,449.566 62.1799,438.867L 62.1799,438.867C 62.1799,428.168 53.5049,419.493 42.8061,419.493L 42.8061,419.493C 32.1063,419.493 23.4324,428.168 23.4324,438.867 Z "> <Path.Fill> <LinearGradientBrush StartPoint="0.499989,1.57524e-006" EndPoint="0.499989,0.997108"> <GradientStop Color="#FF172541" Offset="0.494659"/> <GradientStop Color="#FF0F1C2F" Offset="0.958786"/> <GradientStop Color="#FF0F1C2F" Offset="1"/> <GradientStop Color="#FF9299A6" Offset="0.231"/> <GradientStop Color="#FFFFFFFF" Offset="0"/> </LinearGradientBrush> </Path.Fill> </Path> <Path x:Name="Outline" Width="40.0799" Height="40.0808" Canvas.Left="-0.234" Canvas.Top="0.826" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#8020212E" Data="F1 M 62.1792,438.867C 62.1792,449.567 53.5052,458.241 42.8064,458.241C 32.1066,458.241 23.4327,449.567 23.4327,438.867C 23.4327,428.168 32.1066,419.493 42.8064,419.493C 53.5052,419.493 62.1792,428.168 62.1792,438.867 Z "/> <Path x:Name="Path_82" Width="38.761" Height="38.5447" Canvas.Left="0.448" Canvas.Top="1.596" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#34030305" Data="F1 M 61.5425,438.868C 61.5425,449.141 53.1619,457.474 42.8287,457.474C 32.4924,457.474 24.1148,449.141 24.1148,438.868C 24.1148,428.592 32.4924,420.262 42.8287,420.262C 53.1619,420.262 61.5425,428.592 61.5425,438.868 Z "/> <Path x:Name="Arrow" Width="12.8489" Height="14.7451" Canvas.Left="14.718" Canvas.Top="13.322" Stretch="Fill" Data="F1 M 37.7441,432.466C 37.7441,433.284 37.7181,443.308 37.7181,444.588L 37.7181,444.588C 37.7181,445.993 38.393,446.415 39.5436,445.777L 39.5436,445.777C 40.6952,445.138 48.7083,440.478 49.7317,439.842L 49.7317,439.842C 50.7541,439.202 50.8833,437.968 49.8669,437.362L 49.8669,437.362C 48.7473,436.696 40.4949,432.128 39.4425,431.549L 39.4425,431.549C 39.1521,431.39 38.8977,431.322 38.6794,431.322L 38.6794,431.322C 38.0676,431.322 37.7441,431.862 37.7441,432.466 Z " Opacity="0.75" RenderTransformOrigin="0.5,0.5"> <Path.Fill> <LinearGradientBrush StartPoint="0.499996,3.93238e-005" EndPoint="0.499996,0.997125"> <GradientStop Color="#FFFFFFFF" Offset="0"/> <GradientStop Color="#FFFFFFFF" Offset="0.219849"/> <GradientStop Color="#FFBABABA" Offset="0.882446"/> <GradientStop Color="#FFBABABA" Offset="1"/> </LinearGradientBrush> </Path.Fill> <Path.RenderTransform> <TransformGroup> <ScaleTransform ScaleX="1" ScaleY="1"/> <SkewTransform AngleX="0" AngleY="0"/> <RotateTransform Angle="0"/> <TranslateTransform X="0" Y="0"/> </TransformGroup> </Path.RenderTransform> </Path> <Path x:Name="Arrow_Outline" Width="14.1827" Height="16.0786" Canvas.Left="14.051" Canvas.Top="12.655" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#FF292D4F" Data="F1 M 37.744,432.466C 37.744,433.285 37.718,443.308 37.718,444.587C 37.718,445.993 38.3929,446.415 39.5435,445.777C 40.6941,445.137 48.7082,440.478 49.7316,439.841C 50.754,439.202 50.8842,437.967 49.8668,437.362C 48.7472,436.696 40.4948,432.127 39.4414,431.549C 38.3379,430.944 37.744,431.647 37.744,432.466 Z " Opacity="0.01"/> <Path x:Name="Sheen" Width="34.0691" Height="42.742" Canvas.Left="0.432" Canvas.Top="1.6" Stretch="Fill" Data="F1 M 42.8061,419.6C 32.1063,419.6 23.4324,428.275 23.4324,438.972C 23.4324,444.524 25.7796,449.517 29.5208,453.048C 29.4687,452.726 29.4246,452.419 29.3596,452.073C 27.509,442.144 38.5412,440.209 48.472,435.16C 54.4112,432.14 56.6563,428.671 57.5014,426.371C 53.9495,422.231 48.6893,419.6 42.8061,419.6 Z M 27.9656,462.342C 27.9656,462.342 28.238,462.306 28.5785,462.027L 27.2456,462.027C 27.7013,462.236 27.9656,462.342 27.9656,462.342 Z "> <Path.Fill> <LinearGradientBrush StartPoint="0.546375,-0.207687" EndPoint="0.546375,1"> <GradientStop Color="#34F6F6F5" Offset="0"/> <GradientStop Color="#34FFFFFF" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> </Canvas> <Canvas x:Name="StopButton" Width="32.6667" Height="37.8252" Canvas.Left="269.443" Canvas.Top="315.892" RenderTransformOrigin="0.5,0.5"> <Canvas.RenderTransform> <TransformGroup> <ScaleTransform ScaleX="0.95" ScaleY="0.95"/> <SkewTransform AngleX="0" AngleY="0"/> <RotateTransform Angle="0"/> <TranslateTransform X="0" Y="0"/> </TransformGroup> </Canvas.RenderTransform> <Path x:Name="GradientFillStop" Width="29.2104" Height="29.2103" Canvas.Left="2.10266" Canvas.Top="5.52362" Stretch="Fill" Data="F1 M 2.10266,20.1288C 2.10266,28.1949 8.64069,34.7339 16.7068,34.7339L 16.7068,34.7339C 24.773,34.7339 31.313,28.1949 31.313,20.1288L 31.313,20.1288C 31.313,12.0637 24.773,5.52362 16.7068,5.52362L 16.7068,5.52362C 8.64069,5.52362 2.10266,12.0637 2.10266,20.1288 Z "> <Path.Fill> <LinearGradientBrush StartPoint="0.499981,2.08951e-006" EndPoint="0.499981,0.997097"> <GradientStop Color="#FFFFFFFF" Offset="0"/> <GradientStop Color="#FF172541" Offset="0.494659"/> <GradientStop Color="#FF0F1C2F" Offset="0.958786"/> <GradientStop Color="#FF0F1C2F" Offset="1"/> <GradientStop Color="#FF9299A6" Offset="0.236"/> </LinearGradientBrush> </Path.Fill> </Path> <Canvas Width="640" Height="480" x:Name="Clip_62"> <Path x:Name="Outline1" Width="30.5437" Height="30.5437" Canvas.Left="1.43538" Canvas.Top="4.85695" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#8020212E" Data="F1 M 31.3124,20.1288C 31.3124,28.1959 24.7734,34.7339 16.7072,34.7339C 8.64008,34.7339 2.10205,28.1959 2.10205,20.1288C 2.10205,12.0637 8.64008,5.52362 16.7072,5.52362C 24.7734,5.52362 31.3124,12.0637 31.3124,20.1288 Z "/> <Path x:Name="Path_64" Width="29.5503" Height="29.3871" Canvas.Left="1.9486" Canvas.Top="5.43575" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#34030305" Data="F1 M 30.8323,20.1298C 30.8323,27.8745 24.5145,34.1562 16.7238,34.1562C 8.932,34.1562 2.61526,27.8745 2.61526,20.1298C 2.61526,12.3831 8.932,6.10242 16.7238,6.10242C 24.5145,6.10242 30.8323,12.3831 30.8323,20.1298 Z "/> </Canvas> <Path x:Name="StopIcon" Width="10.5035" Height="10.124" Canvas.Left="11.5127" Canvas.Top="14.8745" Stretch="Fill" Data="F1 M 11.8812,14.8745C 11.6769,14.8745 11.5127,15.0327 11.5127,15.227L 11.5127,24.645C 11.5127,24.8413 11.6769,24.9985 11.8812,24.9985L 21.6477,24.9985C 21.6477,24.9985 22.0162,24.8413 22.0162,24.645L 22.0162,15.227C 22.0162,15.0327 21.8509,14.8745 21.6477,14.8745L 11.8812,14.8745 Z " RenderTransformOrigin="0.5,0.5" Opacity="0.75"> <Path.Fill> <LinearGradientBrush StartPoint="0.499961,0.0147735" EndPoint="0.499961,0.956204"> <GradientStop Color="#FFFFFFFF" Offset="0"/> <GradientStop Color="#FFFFFFFF" Offset="0.219849"/> <GradientStop Color="#FFBABABA" Offset="0.882446"/> <GradientStop Color="#FFBABABA" Offset="1"/> </LinearGradientBrush> </Path.Fill> <Path.RenderTransform> <TransformGroup> <ScaleTransform ScaleX="1" ScaleY="1"/> <SkewTransform AngleX="0" AngleY="0"/> <RotateTransform Angle="0"/> <TranslateTransform X="0" Y="0"/> </TransformGroup> </Path.RenderTransform> </Path> <Path x:Name="Path_66" Width="11.8368" Height="11.4583" Canvas.Left="10.8457" Canvas.Top="14.2077" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#FF292D4F" Data="F1 M 22.0159,24.6458C 22.0159,24.8411 21.6474,24.9993 21.6474,24.9993L 11.8809,24.9993C 11.6776,24.9993 11.5124,24.8411 11.5124,24.6458L 11.5124,15.2278C 11.5124,15.0326 11.6776,14.8743 11.8809,14.8743L 21.6474,14.8743C 21.8516,14.8743 22.0159,15.0326 22.0159,15.2278L 22.0159,24.6458 Z " Opacity="0"/> <Path x:Name="Path_67" Width="25.681" Height="32.222" Canvas.Left="2.102" Canvas.Top="5.603" Stretch="Fill" Data="F1 M5.51938,37.8252 C5.51938,37.8252 5.72466,37.7982 5.98102,37.5889 L4.97863,37.5889 C5.3201,37.7461 5.51938,37.8252 5.51938,37.8252 z M16.7068,5.60272 C8.64069,5.60272 2.10165,12.1428 2.10165,20.2089 2.10165,24.3947 3.8721,28.1579 6.692,30.8206 6.65194,30.5772 6.6189,30.3449 6.56982,30.0845 5.1749,22.6002 13.4924,21.1402 20.9787,17.3339 25.4649,15.0538 27.1473,12.4382 27.7831,10.7038 25.1044,7.58646 21.1399,5.60272 16.7068,5.60272 z"> <Path.Fill> <LinearGradientBrush StartPoint="0.472803,-0.000258589" EndPoint="0.472803,0.999998"> <GradientStop Color="#34F6F6F5" Offset="0"/> <GradientStop Color="#34FFFFFF" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> </Canvas> <Canvas x:Name="CaptionArea" Width="574.169" Height="76.287" Background="#FF000000" Opacity="0.52" Canvas.Left="33.501" Canvas.Top="287" Visibility="Collapsed" IsHitTestVisible="false"> <TextBlock x:Name="CaptionText" Width="400" Height="14" FontSize="14" TextWrapping="Wrap" Foreground="#FFFFFFFF"><Run Text="ClosedCaptionArea"/></TextBlock> </Canvas> <TextBlock x:Name="BufferingText" Canvas.Left="313.667" Canvas.Top="204.683" Foreground="#E6FFFFFF" Text="00" TextWrapping="Wrap" FontFamily="Arial" FontSize="9" IsHitTestVisible="False" Visibility="Collapsed" Cursor="Wait"/> <Canvas x:Name="BufferingArea" Width="31.177" Height="31.363" Canvas.Left="302.642" Canvas.Top="194.392" RenderTransformOrigin="0.5,0.5" Visibility="Collapsed" IsHitTestVisible="False"> <Canvas.RenderTransform> <TransformGroup> <ScaleTransform ScaleX="1" ScaleY="1"/> <SkewTransform AngleX="0" AngleY="0"/> <RotateTransform Angle="0"/> <TranslateTransform X="0" Y="0"/> </TransformGroup> </Canvas.RenderTransform> <Path x:Name="Path_180" Width="4.47101" Height="4.47101" Canvas.Left="6.62399" Canvas.Top="1.81999" Stretch="Fill" Fill="#E6FFFFFF" Data="F1 M 11.095,4.05699C 11.095,5.291 10.093,6.291 8.85901,6.291C 7.625,6.291 6.62399,5.291 6.62399,4.05699C 6.62399,2.82097 7.625,1.81999 8.85901,1.81999C 10.093,1.81999 11.095,2.82097 11.095,4.05699 Z "/> <Path x:Name="Path_176" Width="4.47202" Height="4.47197" Canvas.Left="13.351" Canvas.Top="0" Stretch="Fill" Fill="#FFFFFFFF" Data="F1 M 17.823,2.23601C 17.823,3.47099 16.822,4.47197 15.588,4.47197C 14.353,4.47197 13.351,3.47099 13.351,2.23601C 13.351,1.002 14.353,0 15.588,0C 16.822,0 17.823,1.002 17.823,2.23601 Z "/> <Path x:Name="Path_177" Width="4.47" Height="4.47101" Canvas.Left="20.08" Canvas.Top="1.81999" Stretch="Fill" Fill="#E6FFFFFF" Data="F1 M 24.55,4.05699C 24.55,5.291 23.549,6.291 22.315,6.291C 21.08,6.291 20.08,5.291 20.08,4.05699C 20.08,2.82097 21.08,1.81999 22.315,1.81999C 23.549,1.81999 24.55,2.82097 24.55,4.05699 Z "/> <Path x:Name="Path_178" Width="4.47098" Height="4.46997" Canvas.Left="24.966" Canvas.Top="6.76604" Stretch="Fill" Fill="#CDFFFFFF" Data="F1 M 29.437,9.00102C 29.437,10.235 28.436,11.236 27.201,11.236C 25.966,11.236 24.966,10.235 24.966,9.00102C 24.966,7.76701 25.966,6.76604 27.201,6.76604C 28.436,6.76604 29.437,7.76701 29.437,9.00102 Z "/> <Path x:Name="Path_179" Width="4.47" Height="4.47095" Canvas.Left="26.707" Canvas.Top="13.355" Stretch="Fill" Fill="#B3FFFFFF" Data="F1 M 31.177,15.591C 31.177,16.826 30.177,17.826 28.943,17.826C 27.708,17.826 26.707,16.826 26.707,15.591C 26.707,14.356 27.708,13.355 28.943,13.355C 30.177,13.355 31.177,14.356 31.177,15.591 Z "/> <Path x:Name="Path_184" Width="4.47098" Height="4.47101" Canvas.Left="24.966" Canvas.Top="20.127" Stretch="Fill" Fill="#9AFFFFFF" Data="F1 M 29.437,22.362C 29.437,21.128 28.436,20.127 27.201,20.127C 25.966,20.127 24.966,21.128 24.966,22.362C 24.966,23.598 25.966,24.598 27.201,24.598C 28.436,24.598 29.437,23.598 29.437,22.362 Z "/> <Path x:Name="Path_183" Width="4.47" Height="4.47101" Canvas.Left="20.08" Canvas.Top="25.072" Stretch="Fill" Fill="#80FFFFFF" Data="F1 M 24.55,27.307C 24.55,26.072 23.549,25.072 22.315,25.072C 21.08,25.072 20.08,26.072 20.08,27.307C 20.08,28.542 21.08,29.543 22.315,29.543C 23.549,29.543 24.55,28.542 24.55,27.307 Z "/> <Path x:Name="Path_182" Width="4.47202" Height="4.47003" Canvas.Left="13.351" Canvas.Top="26.893" Stretch="Fill" Fill="#67FFFFFF" Data="F1 M 17.823,29.127C 17.823,27.893 16.822,26.893 15.588,26.893C 14.353,26.893 13.351,27.893 13.351,29.127C 13.351,30.362 14.353,31.363 15.588,31.363C 16.822,31.363 17.823,30.362 17.823,29.127 Z "/> <Path x:Name="Path_185" Width="4.47101" Height="4.47101" Canvas.Left="6.62399" Canvas.Top="25.072" Stretch="Fill" Fill="#4DFFFFFF" Data="F1 M 11.095,27.307C 11.095,26.072 10.093,25.072 8.85901,25.072C 7.625,25.072 6.62399,26.072 6.62399,27.307C 6.62399,28.542 7.625,29.543 8.85901,29.543C 10.093,29.543 11.095,28.542 11.095,27.307 Z "/> <Path x:Name="Path_186" Width="4.47098" Height="4.47101" Canvas.Left="1.73801" Canvas.Top="20.127" Stretch="Fill" Fill="#34FFFFFF" Data="F1 M 6.20898,22.362C 6.20898,21.128 5.207,20.127 3.97198,20.127C 2.73801,20.127 1.73801,21.128 1.73801,22.362C 1.73801,23.598 2.73801,24.598 3.97198,24.598C 5.207,24.598 6.20898,23.598 6.20898,22.362 Z "/> <Path x:Name="Path_187" Width="4.47" Height="4.47107" Canvas.Left="0" Canvas.Top="13.545" Stretch="Fill" Fill="#1AFFFFFF" Data="F1 M 4.47,15.781C 4.47,17.016 3.47,18.016 2.23499,18.016C 1,18.016 0,17.016 0,15.781C 0,14.546 1,13.545 2.23499,13.545C 3.47,13.545 4.47,14.546 4.47,15.781 Z "/> <Path x:Name="Path_181" Width="4.47098" Height="4.46997" Canvas.Left="1.73801" Canvas.Top="6.76604" Stretch="Fill" Fill="#00FFFFFF" Data="F1 M 6.20898,9.00102C 6.20898,10.235 5.207,11.236 3.97198,11.236C 2.73801,11.236 1.73801,10.235 1.73801,9.00102C 1.73801,7.76701 2.73801,6.76604 3.97198,6.76604C 5.207,6.76604 6.20898,7.76701 6.20898,9.00102 Z "/> </Canvas> <Canvas x:Name="ChapterArea" Width="620.859" Height="110.669" Canvas.Left="10.6577" Canvas.Top="240.174" Opacity="0" Visibility="Collapsed"> <Rectangle x:Name="Rectangle_99" Width="620.859" Height="108.15" Canvas.Left="0" Canvas.Top="2.51849" Stretch="Fill"> <Rectangle.Fill> <LinearGradientBrush StartPoint="0.499999,0.0350696" EndPoint="0.499999,1.00001"> <GradientStop Color="#800B0B0C" Offset="0"/> <GradientStop Color="#80484849" Offset="0.450546"/> <GradientStop Color="#80111111" Offset="0.467026"/> <GradientStop Color="#80221E1F" Offset="1"/> </LinearGradientBrush> </Rectangle.Fill> </Rectangle> <Rectangle x:Name="Rectangle_100" Width="620.859" Height="109.333" Canvas.Left="0" Canvas.Top="0" Stretch="Fill" Fill="#9A000000"/> <Canvas Width="554" Height="93.33" Canvas.Left="32.0823" Canvas.Top="9.2213"> <Canvas.Clip> <RectangleGeometry Rect="0,0,554,93.33" /> </Canvas.Clip> <Canvas x:Name="ChapterArea_Scroll" Width="554" Height="93.33"> <Canvas x:Name="ChapterArea_ScrollItem1" Width="123.502" Height="87.3521" Canvas.Left="7.499" Canvas.Top="3.51558"> <Canvas.RenderTransform> <TranslateTransform /> </Canvas.RenderTransform> <Image x:Name="ChapterArea_ScrollItem1_Image" Width="123.502" Height="87.3521" Canvas.Left="0" Canvas.Top="0" /> </Canvas> <Canvas x:Name="ChapterArea_ScrollItem2" Width="123.502" Height="87.3521" Canvas.Left="145.999" Canvas.Top="3.51558"> <Canvas.RenderTransform> <TranslateTransform /> </Canvas.RenderTransform> <Image x:Name="ChapterArea_ScrollItem2_Image" Width="123.502" Height="87.3521" Canvas.Left="0" Canvas.Top="0" /> </Canvas> <Canvas x:Name="ChapterArea_ScrollItem3" Width="123.502" Height="87.3521" Canvas.Left="284.499" Canvas.Top="3.51558"> <Canvas.RenderTransform> <TranslateTransform /> </Canvas.RenderTransform> <Image x:Name="ChapterArea_ScrollItem3_Image" Width="123.502" Height="87.3521" Canvas.Left="0" Canvas.Top="0" /> </Canvas> <Canvas x:Name="ChapterArea_ScrollItem4" Width="123.502" Height="87.3521" Canvas.Left="422.999" Canvas.Top="3.51558"> <Canvas.RenderTransform> <TranslateTransform /> </Canvas.RenderTransform> <Image x:Name="ChapterArea_ScrollItem4_Image" Width="123.502" Height="87.3521" Canvas.Left="0" Canvas.Top="0" /> </Canvas> <Canvas x:Name="ChapterArea_ScrollItem5" Width="123.502" Height="87.3521" Canvas.Left="561.499" Canvas.Top="3.51558"> <Canvas.RenderTransform> <TranslateTransform /> </Canvas.RenderTransform> <Image x:Name="ChapterArea_ScrollItem5_Image" Width="123.502" Height="87.3521" Canvas.Left="0" Canvas.Top="0" /> </Canvas> </Canvas> </Canvas> <Rectangle x:Name="Rectangle_101" Width="1.00134" Height="98.1736" Canvas.Left="591.042" Canvas.Top="2.51952" Stretch="Fill" Fill="#12FFFFFF"/> <Rectangle x:Name="Rectangle_102" Width="1.00134" Height="98.1736" Canvas.Left="592.028" Canvas.Top="2.51952" Stretch="Fill" Fill="#FF070709"/> <Path x:Name="ChapterArea_ScrollNext" Width="17.356" Height="19.7188" Canvas.Left="597.754" Canvas.Top="44.7496" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#4D292D4F" Data="F1 M 598.454,46.8427C 598.454,47.8641 598.421,60.3634 598.421,61.9586C 598.421,63.71 599.263,64.2347 600.698,63.4407C 602.131,62.6425 612.124,56.8345 613.4,56.0394C 614.676,55.2413 614.838,53.7032 613.57,52.9481C 612.174,52.118 601.882,46.4202 600.57,45.7001C 599.193,44.9461 598.454,45.8213 598.454,46.8427 Z "> <Path.Fill> <LinearGradientBrush StartPoint="0.500001,0.0337972" EndPoint="0.500001,0.963483"> <GradientStop Color="#4DFFFFFF" Offset="0"/> <GradientStop Color="#4DFFFFFF" Offset="0.219849"/> <GradientStop Color="#4DBABABA" Offset="0.882446"/> <GradientStop Color="#4DBABABA" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> <Rectangle x:Name="Rectangle_103" Width="1.00138" Height="98.1736" Canvas.Left="28.4503" Canvas.Top="2.51952" Stretch="Fill" Fill="#FF070709"/> <Rectangle x:Name="Rectangle_104" Width="1.00138" Height="98.1736" Canvas.Left="27.4649" Canvas.Top="2.51952" Stretch="Fill" Fill="#12FFFFFF"/> <Path x:Name="ChapterArea_ScrollPrevious" Width="17.3555" Height="19.7187" Canvas.Left="4.91704" Canvas.Top="44.7498" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#4D292D4F" Data="F1 M 21.5738,46.8427C 21.5738,47.8641 21.6058,60.3634 21.6058,61.9576C 21.6058,63.71 20.7637,64.2347 19.3297,63.4407C 17.8947,62.6425 7.90191,56.8345 6.62615,56.0394C 5.35039,55.2413 5.18917,53.7032 6.45692,52.9481C 7.85385,52.118 18.1441,46.4202 19.4569,45.7001C 20.8338,44.9461 21.5738,45.8223 21.5738,46.8427 Z "> <Path.Fill> <LinearGradientBrush StartPoint="0.499986,0.0337896" EndPoint="0.499986,0.963484"> <GradientStop Color="#4DFFFFFF" Offset="0"/> <GradientStop Color="#4DFFFFFF" Offset="0.219849"/> <GradientStop Color="#4DBABABA" Offset="0.882446"/> <GradientStop Color="#4DBABABA" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> <Rectangle x:Name="Rectangle_105" Width="620.859" Height="5.12909" Canvas.Left="0" Canvas.Top="0.515732" Stretch="Fill" Fill="#FF070709"/> </Canvas> <Canvas x:Name="Timeline" Width="630.202" Height="21.793" Canvas.Left="41.986" Canvas.Top="280.346" RenderTransformOrigin="0.5,0.5" Opacity="0.5"> <Canvas.RenderTransform> <TransformGroup> <ScaleTransform ScaleX="0.65" ScaleY="0.65"/> <SkewTransform AngleX="0" AngleY="0"/> <RotateTransform Angle="0"/> <TranslateTransform X="0" Y="0"/> </TransformGroup> </Canvas.RenderTransform> <Path x:Name="TimeSliderOutline" Width="209.252" Height="12.036" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#FF20212E" Data="F1 M280.23118,388.225 L18.4455,388.225 C15.4944,388.225 13.0941,385.825 13.0941,382.873 13.0941,379.922 15.4944,377.522 18.4455,377.522 L280.23118,377.522 C283.18218,377.522 285.58418,379.922 285.58418,382.873 285.58418,385.825 283.18218,388.225 280.23118,388.225 z" Opacity="0.515" Fill="#FF000000" Canvas.Left="6.442" Canvas.Top="5.509"/> <Path x:Name="TimeSliderBackground" Width="209.252" Height="10.104" Stretch="Fill" Data="F1 M286.40329,382.874 C286.40329,385.664 284.14029,387.926 281.35129,387.926 L18.4465,387.926 C15.6566,387.926 13.3945,385.664 13.3945,382.874 13.3945,380.084 15.6566,377.822 18.4465,377.822 L281.35129,377.822 C284.14029,377.822 286.40329,380.084 286.40329,382.874 z" Canvas.Left="7.409" Canvas.Top="6.476"> <Path.Fill> <LinearGradientBrush StartPoint="0.5,0.0350151" EndPoint="0.5,0.999937"> <GradientStop Color="#34FFFFFF" Offset="0"/> <GradientStop Color="#34172541" Offset="0.494659"/> <GradientStop Color="#340F1C2F" Offset="0.958786"/> <GradientStop Color="#340F1C2F" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> <Path x:Name="DownloadProgressSlider" Width="207.862" Height="10.104" Stretch="Fill" Data="F1 M18.4465,377.822 C15.6566,377.822 13.3945,380.083 13.3945,382.874 L13.3945,382.874 C13.3945,385.664 15.6566,387.926 18.4465,387.926 L279.54856,387.926 C282.33856,387.926 284.60156,385.664 284.60156,382.874 L284.60156,382.874 C284.60156,380.083 282.33856,377.822 279.54856,377.822 L18.4465,377.822 z" Canvas.Left="7.409" Canvas.Top="6.476"> <Path.Fill> <LinearGradientBrush StartPoint="0.507218,-0.236081" EndPoint="0.507218,1.28686"> <GradientStop Color="#FFFFFFFF" Offset="0"/> <GradientStop Color="#FF172541" Offset="0.494659"/> <GradientStop Color="#FF0F1C2F" Offset="0.958786"/> <GradientStop Color="#FF0F1C2F" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> <Path x:Name="TimeSlider" Width="209.226" Height="21.793" Stretch="Fill" Data="F1 M286.38215,382.874 C286.38215,385.664 284.11915,387.926 281.33015,387.926 L18.4465,387.926 C15.6566,387.926 13.3945,385.664 13.3945,382.874 13.3945,380.084 15.6566,377.822 18.4465,377.822 L281.33015,377.822 C284.11915,377.822 286.38215,380.084 286.38215,382.874 z" Opacity="0.01" Canvas.Left="7.409"> <Path.Fill> <LinearGradientBrush StartPoint="0.5,0.0350151" EndPoint="0.5,0.999937"> <GradientStop Color="#34FFFFFF" Offset="0"/> <GradientStop Color="#34172541" Offset="0.494659"/> <GradientStop Color="#340F1C2F" Offset="0.958786"/> <GradientStop Color="#340F1C2F" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> <Path x:Name="TimeThumb" Width="37.1994" Height="10.1039" Stretch="Fill" Data="F1 M 210.36,377.822C 209.254,377.822 208.357,378.719 208.357,379.825L 208.357,385.922C 208.357,387.029 209.254,387.926 210.36,387.926L 243.553,387.926C 244.659,387.926 245.556,387.029 245.556,385.922L 245.556,379.825C 245.556,378.719 244.659,377.822 243.553,377.822L 210.36,377.822 Z " Canvas.Left="30.371" Canvas.Top="6.476"> <Path.Fill> <LinearGradientBrush StartPoint="0.500002,0.00220487" EndPoint="0.500002,0.993869"> <GradientStop Color="#FFFFFFFF" Offset="0"/> <GradientStop Color="#FFFFFFFF" Offset="0.0714264"/> <GradientStop Color="#FF91A5CC" Offset="0.472534"/> <GradientStop Color="#FF1A49A5" Offset="0.494507"/> <GradientStop Color="#FF0F1C2F" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> <Path x:Name="MuteIcon_Copy" Width="4.42007" Height="10.4414" Canvas.Left="374.3" Canvas.Top="5.774" Stretch="Fill" Data="F1 M 11.1061,13.4303L 9.44983,13.4303L 9.44983,17.3707L 11.1392,17.3707L 13.8699,20.6352L 13.8699,18.5674L 13.8699,10.1938L 11.1061,13.4303 Z " Opacity="0.75" Fill="#FF16233E" RenderTransformOrigin="0.5,0.5"> <Path.RenderTransform> <TransformGroup> <ScaleTransform ScaleX="2.75" ScaleY="1.55"/> <SkewTransform AngleX="0" AngleY="0"/> <RotateTransform Angle="0"/> <TranslateTransform X="0" Y="0"/> </TransformGroup> </Path.RenderTransform> </Path> </Canvas> <TextBlock x:Name="CurrentTimeText" Canvas.Left="129" Canvas.Top="287" Foreground="#9B16243F" Text="00:00" TextWrapping="Wrap" FontFamily="Arial" FontSize="9"/> <Canvas x:Name="Volume" Width="117.593" Height="16.652" Canvas.Left="398.538" Canvas.Top="283.046" RenderTransformOrigin="0.5,0.5" Opacity="0.5"> <Canvas.RenderTransform> <TransformGroup> <ScaleTransform ScaleX="0.9" ScaleY="0.9"/> <SkewTransform AngleX="0" AngleY="0"/> <RotateTransform Angle="0"/> <TranslateTransform X="0" Y="0"/> </TransformGroup> </Canvas.RenderTransform> <Path x:Name="VolumeOutline" Width="106.134" Height="9.02493" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#E620212E" Data="F1 M 449.595,443.182L 352.484,443.182C 350.365,443.182 348.64,441.456 348.64,439.336C 348.64,437.216 350.365,435.491 352.484,435.491L 449.595,435.491C 451.715,435.491 453.441,437.216 453.441,439.336C 453.441,441.456 451.715,443.182 449.595,443.182 Z " Opacity="0.515" Canvas.Left="5.435" Canvas.Top="3.778"/> <Path x:Name="VolumeSliderBackground" Width="104.202" Height="7.0928" Stretch="Fill" Data="F1 M 453.142,439.336C 453.142,441.295 451.554,442.883 449.596,442.883L 352.486,442.883C 350.527,442.883 348.94,441.295 348.94,439.336C 348.94,437.378 350.527,435.79 352.486,435.79L 449.596,435.79C 451.554,435.79 453.142,437.378 453.142,439.336 Z " Canvas.Left="6.402" Canvas.Top="4.744"> <Path.Fill> <LinearGradientBrush StartPoint="0.499994,0.0350878" EndPoint="0.499994,1.00003"> <GradientStop Color="#34FFFFFF" Offset="0"/> <GradientStop Color="#34172541" Offset="0.494659"/> <GradientStop Color="#340F1C2F" Offset="0.958786"/> <GradientStop Color="#340F1C2F" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> <Path x:Name="VolumeSlider_Highlight" Width="104.202" Height="7.0928" Stretch="Fill" Data="F1 M 352.486,435.79C 350.527,435.79 348.94,437.379 348.94,439.337L 348.94,439.337C 348.94,441.294 350.527,442.883 352.486,442.883L 449.596,442.883C 451.554,442.883 453.142,441.294 453.142,439.337L 453.142,439.337C 453.142,437.379 451.554,435.79 449.596,435.79L 352.486,435.79 Z " Canvas.Left="6.402" Canvas.Top="4.744"> <Path.Fill> <LinearGradientBrush StartPoint="0.499994,0.0350878" EndPoint="0.499994,1.00003"> <GradientStop Color="#FFA0A5B1" Offset="0"/> <GradientStop Color="#FF172541" Offset="0.494659"/> <GradientStop Color="#FF0F1C2F" Offset="0.958786"/> <GradientStop Color="#FF0F1C2F" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> <Path x:Name="VolumeSlider" Width="104.202" Height="16.652" Stretch="Fill" Data="F1 M 453.142,439.336C 453.142,441.295 451.554,442.883 449.596,442.883L 352.486,442.883C 350.527,442.883 348.94,441.295 348.94,439.336C 348.94,437.378 350.527,435.79 352.486,435.79L 449.596,435.79C 451.554,435.79 453.142,437.378 453.142,439.336 Z " Opacity="0.01" Canvas.Left="6.402"> <Path.Fill> <LinearGradientBrush StartPoint="0.499994,0.0350878" EndPoint="0.499994,1.00003"> <GradientStop Color="#34FFFFFF" Offset="0"/> <GradientStop Color="#34172541" Offset="0.494659"/> <GradientStop Color="#340F1C2F" Offset="0.958786"/> <GradientStop Color="#340F1C2F" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> <Path x:Name="VolumeThumb" Width="19.7022" Height="7.0928" Stretch="Fill" Data="F1 M 411.041,435.79C 410.265,435.79 409.635,436.419 409.635,437.197L 409.635,441.476C 409.635,442.254 410.265,442.883 411.041,442.883L 427.933,442.883C 428.708,442.883 429.337,442.254 429.337,441.476L 429.337,437.197C 429.337,436.419 428.708,435.79 427.933,435.79L 411.041,435.79 Z " Canvas.Left="67.097" Canvas.Top="4.744"> <Path.Fill> <LinearGradientBrush StartPoint="0.499989,0.00227178" EndPoint="0.499989,0.993951"> <GradientStop Color="#FFFFFFFF" Offset="0"/> <GradientStop Color="#FFFFFFFF" Offset="0.0714264"/> <GradientStop Color="#FF91A5CC" Offset="0.329666"/> <GradientStop Color="#FF1A49A5" Offset="0.357147"/> <GradientStop Color="#FF0F1C2F" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> </Canvas> <Canvas x:Name="ChapterToggleButton" Width="77.31" Height="31.236" Canvas.Left="534.364" Canvas.Top="423.716" Visibility="Collapsed"> <Path x:Name="ChapterInset" Width="77.3103" Height="31.2356" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#3420212E" Data="F1 M 611.008,439.334C 611.008,447.591 604.314,454.284 596.056,454.284L 549.983,454.284C 541.725,454.284 535.031,447.591 535.031,439.334C 535.031,431.075 541.725,424.382 549.983,424.382L 596.056,424.382C 604.314,424.382 611.008,431.075 611.008,439.334 Z "> <Path.Fill> <LinearGradientBrush StartPoint="0.500006,0.0213389" EndPoint="0.500006,0.978665"> <GradientStop Color="#34FFFFFF" Offset="0"/> <GradientStop Color="#34172541" Offset="0.494659"/> <GradientStop Color="#340F1C2F" Offset="0.958786"/> <GradientStop Color="#340F1C2F" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> <Canvas x:Name="ChapterToggleButtonInner" Width="69.3002" Height="23.2246" Canvas.Left="4.006" Canvas.Top="4.005"> <Path x:Name="GradientFillChapterBtn" Width="67.9668" Height="21.8912" Canvas.Left="0.66626" Canvas.Top="0.666473" Stretch="Fill" Data="F1 M 11.6113,0.666473C 5.57495,0.666473 0.66626,5.57526 0.66626,11.6126L 0.66626,11.6126C 0.66626,17.6489 5.57495,22.5577 11.6113,22.5577L 57.688,22.5577C 63.7244,22.5577 68.6331,17.6489 68.6331,11.6126L 68.6331,11.6126C 68.6331,5.57526 63.7244,0.666473 57.688,0.666473L 11.6113,0.666473 Z "> <Path.Fill> <LinearGradientBrush StartPoint="0.5,-4.18216e-006" EndPoint="0.5,1.00001"> <GradientStop Color="#FFFFFFFF" Offset="0"/> <GradientStop Color="#FF172541" Offset="0.494659"/> <GradientStop Color="#FF0F1C2F" Offset="0.958786"/> <GradientStop Color="#FF0F1C2F" Offset="1"/> <GradientStop Color="#FF757D8E" Offset="0.231"/> </LinearGradientBrush> </Path.Fill> </Path> <Path x:Name="Path_12" Width="69.3002" Height="23.2246" Canvas.Left="-4.071e-005" Canvas.Top="-1.01924e-005" Stretch="Fill" StrokeThickness="1.33333" StrokeLineJoin="Round" Stroke="#8020212E" Data="F1 M 57.6874,22.5579L 11.6118,22.5579C 5.57544,22.5579 0.666626,17.6491 0.666626,11.6118C 0.666626,5.57547 5.57544,0.666656 11.6118,0.666656L 57.6874,0.666656C 63.7238,0.666656 68.6335,5.57547 68.6335,11.6118C 68.6335,17.6491 63.7238,22.5579 57.6874,22.5579 Z "/> <Path x:Name="BoxFill1" Width="11.5449" Height="9.06052" Canvas.Left="8.34485" Canvas.Top="6.89807" Stretch="Fill" Data="F1 M 15.8683,12.662L 12.3674,12.662L 12.3674,10.1946L 15.8683,10.1946M 8.34485,15.9586L 19.8898,15.9586L 19.8898,6.89807L 8.34485,6.89807L 8.34485,15.9586 Z "> <Path.Fill> <LinearGradientBrush StartPoint="0.500011,0.0246687" EndPoint="0.500011,0.981751"> <GradientStop Color="#34FFFFFF" Offset="0"/> <GradientStop Color="#34FFFFFF" Offset="0.0396881"/> <GradientStop Color="#34FBFBFB" Offset="0.395416"/> <GradientStop Color="#34E8E8E6" Offset="0.441223"/> <GradientStop Color="#34D6D6D6" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> <Path x:Name="BoxFill2" Width="11.5429" Height="9.06052" Canvas.Left="22.1689" Canvas.Top="6.89807" Stretch="Fill" Data="F1 M 29.6903,12.662L 26.1895,12.662L 26.1895,10.1946L 29.6903,10.1946M 22.1689,15.9586L 33.7119,15.9586L 33.7119,6.89807L 22.1689,6.89807L 22.1689,15.9586 Z "> <Path.Fill> <LinearGradientBrush StartPoint="0.499987,0.0246687" EndPoint="0.499987,0.981751"> <GradientStop Color="#34FFFFFF" Offset="0"/> <GradientStop Color="#34FFFFFF" Offset="0.0396881"/> <GradientStop Color="#34FBFBFB" Offset="0.395416"/> <GradientStop Color="#34E8E8E6" Offset="0.441223"/> <GradientStop Color="#34D6D6D6" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> <Path x:Name="BoxFill3" Width="11.543" Height="9.06052" Canvas.Left="36.2944" Canvas.Top="6.89807" Stretch="Fill" Data="F1 M 43.8168,12.662L 40.316,12.662L 40.316,10.1946L 43.8168,10.1946M 36.2944,15.9586L 47.8374,15.9586L 47.8374,6.89807L 36.2944,6.89807L 36.2944,15.9586 Z "> <Path.Fill> <LinearGradientBrush StartPoint="0.500021,0.0246687" EndPoint="0.500021,0.981751"> <GradientStop Color="#34FFFFFF" Offset="0"/> <GradientStop Color="#34FFFFFF" Offset="0.0396881"/> <GradientStop Color="#34FBFBFB" Offset="0.395416"/> <GradientStop Color="#34E8E8E6" Offset="0.441223"/> <GradientStop Color="#34D6D6D6" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> <Path x:Name="Path_14" Width="12.0466" Height="9.56122" Canvas.Left="8.09253" Canvas.Top="6.64774" Stretch="Fill" Fill="#FF000017" Data="F1 M 12.6157,12.4107L 15.6169,12.4107L 15.6169,10.443L 12.6157,10.443M 12.1171,12.9104L 12.1171,9.94528L 16.1166,9.94528L 16.1166,12.66L 16.1166,12.9104M 8.59418,15.7062L 19.6365,15.7062L 19.6365,7.14844L 8.59418,7.14844M 8.09253,16.209L 8.09253,6.89706L 8.09253,6.64774L 20.1391,6.64774L 20.1391,16.209L 8.09253,16.209 Z "/> <Path x:Name="Path_16" Width="12.0446" Height="9.56021" Canvas.Left="21.9176" Canvas.Top="6.64774" Stretch="Fill" Fill="#FF000017" Data="F1 M 26.4368,12.4117L 29.439,12.4117L 29.439,10.443L 26.4368,10.443M 25.9381,12.9104L 25.9381,9.94528L 29.9397,9.94528L 29.9397,12.662L 29.9397,12.9104M 22.4183,15.7072L 33.4595,15.7072L 33.4595,7.14743L 22.4183,7.14743M 21.9176,16.2079L 21.9176,6.89807L 21.9176,6.64774L 33.9622,6.64774L 33.9622,16.2079L 21.9176,16.2079 Z "/> <Path x:Name="Path_18" Width="12.0457" Height="9.5582" Canvas.Left="36.0421" Canvas.Top="6.64874" Stretch="Fill" Fill="#FF000017" Data="F1 M 40.5634,12.4117L 43.5665,12.4117L 43.5665,10.443L 40.5634,10.443M 40.0657,12.9114L 40.0657,9.94528L 44.0652,9.94528L 44.0652,12.662L 44.0652,12.9114M 36.5438,15.7052L 47.584,15.7052L 47.584,7.14743L 36.5438,7.14743M 36.0421,16.2069L 36.0421,6.89908L 36.0421,6.64874L 48.0878,6.64874L 48.0878,16.2069L 36.0421,16.2069 Z "/> <Path x:Name="Path_19" Width="43.6477" Height="21.8912" Canvas.Left="0.66626" Canvas.Top="0.666473" Stretch="Fill" Data="F1 M 34.9095,14.1681C 43.2681,8.7236 44.4797,3.60052 44.2975,0.666473L 11.6124,0.666473C 5.57495,0.666473 0.66626,5.57526 0.66626,11.6126C 0.66626,17.6489 5.57495,22.5577 11.6124,22.5577L 28.5077,22.5577C 29.2867,18.9397 31.9154,16.1198 34.9095,14.1681 Z "> <Path.Fill> <LinearGradientBrush StartPoint="0.929905,-0.116194" EndPoint="0.929905,1.53129"> <GradientStop Color="#27F6F6F5" Offset="0"/> <GradientStop Color="#27FFFFFF" Offset="1"/> </LinearGradientBrush> </Path.Fill> </Path> <Path x:Name="ChaptersArrowUp" Width="5.50421" Height="4.7956" Canvas.Left="56.4781" Canvas.Top="8.59343" Stretch="Fill" Data="F1 M 56.9049,13.38C 57.2113,13.38 60.9525,13.389 61.4312,13.389C 61.9548,13.389 62.1121,13.1367 61.8738,12.7071C 61.6354,12.2785 59.8961,9.28638 59.6577,8.90485C 59.4194,8.52432 58.9587,8.47525 58.7324,8.85379C 58.4841,9.27237 56.7787,12.3536 56.5625,12.7462C 56.3381,13.1587 56.5984,13.38 56.9049,13.38 Z " Opacity="0.75" RenderTransformOrigin="0.5,0.5"> <Path.Fill> <LinearGradientBrush StartPoint="0.500064,-0.0142969" EndPoint="0.500064,1.24698"> <GradientStop Color="#CDFFFFFF" Offset="0"/> <GradientStop Color="#CDFFFFFF" Offset="0.219849"/> <GradientStop Color="#CDBABABA" Offset="0.882446"/> <GradientStop Color="#CDBABABA" Offset="1"/> </LinearGradientBrush> </Path.Fill> <Path.RenderTransform> <TransformGroup> <ScaleTransform ScaleX="1" ScaleY="1"/> <SkewTransform AngleX="0" AngleY="0"/> <RotateTransform Angle="0"/> <TranslateTransform X="0" Y="0"/> </TransformGroup> </Path.RenderTransform> </Path> <Rectangle x:Name="Rectangle_21" Width="0.24939" Height="20.8518" Canvas.Left="52.9734" Canvas.Top="1.14212" Stretch="Fill" Fill="#FF1D2842"/> </Canvas> </Canvas> <Rectangle Width="422" Height="235" Fill="#FFFFFFFF" RadiusX="12" RadiusY="12" Canvas.Left="120" Canvas.Top="63" IsHitTestVisible="False" Visibility="Collapsed" x:Name="mask"/> </Canvas> <Canvas x:Name="FullScreenArea" Width="800" Height="600" Canvas.Left="0" Canvas.Top="0" Visibility="Collapsed" Background="Black"> <Canvas x:Name="FullScreenVideoWindow" Width="800" Height="600" Canvas.Left="0" Canvas.Top="0"> <Canvas.Background> <VideoBrush SourceName="VideoWindow" Stretch="Uniform" /> </Canvas.Background> <Canvas x:Name="FullScreenCaptionArea" Width="574.169" Height="76.287" Background="#FF000000" Opacity="0.52" Canvas.Left="33.501" Canvas.Top="381" Visibility="Collapsed" IsHitTestVisible="false"> <TextBlock x:Name="FullScreenCaptionText" Width="400" Height="14" FontSize="14" TextWrapping="Wrap" Foreground="#FFFFFFFF"><Run Text="ClosedCaptionArea"/></TextBlock> </Canvas> </Canvas> </Canvas> <Canvas Width="800" Height="53" x:Name="Header" Canvas.Top="10" Canvas.Left="-2"> <Canvas x:Name="Layer_2" Width="800" Height="600"> <Canvas x:Name="Group" Width="67.2054" Height="24.08" Canvas.Left="19.7585" Canvas.Top="15.3075"> <Path x:Name="Path1" Width="12.735" Height="22.405" Canvas.Left="0" Canvas.Top="1.28497" Stretch="Fill" Fill="#80000000" Data="F1 M 0,23.69L 0,1.28497L 5.89,1.28497C 7.65,1.28497 9.05083,1.7583 10.0925,2.70502C 11.1342,3.65167 11.655,4.90668 11.655,6.46997C 11.655,7.77332 11.3092,8.90167 10.6175,9.85498C 9.92583,10.8083 8.96,11.4816 7.72,11.875L 7.72,11.94C 9.27,12.0866 10.4933,12.6417 11.39,13.605C 12.2867,14.5683 12.735,15.795 12.735,17.285C 12.735,19.1683 12.1258,20.7067 10.9075,21.9C 9.68917,23.0933 8.05833,23.69 6.015,23.69L 0,23.69 Z M 1.545,2.70502L 1.545,11.375L 4.67,11.375C 6.29667,11.375 7.59917,10.9583 8.5775,10.125C 9.55583,9.29169 10.045,8.16168 10.045,6.73499C 10.045,4.04828 8.45667,2.70502 5.28,2.70502L 1.545,2.70502 Z M 1.545,12.785L 1.545,22.285L 5.705,22.285C 7.465,22.285 8.81083,21.8625 9.7425,21.0175C 10.6742,20.1725 11.14,18.975 11.14,17.425C 11.14,14.3317 9.04167,12.785 4.845,12.785L 1.545,12.785 Z "/> <Rectangle x:Name="Rectangle_0" Width="1.435" Height="23.69" Canvas.Left="16.3301" Canvas.Top="0" Stretch="Fill" Fill="#80000000"/> <Path x:Name="Path_5" Width="13.345" Height="16.78" Canvas.Left="21.2502" Canvas.Top="7.29999" Stretch="Fill" Fill="#80000000" Data="F1 M 22.7502,15.75C 22.7502,17.95 23.2585,19.67 24.2752,20.91C 25.2919,22.15 26.6852,22.77 28.4552,22.77C 30.2452,22.77 31.9952,22.1083 33.7052,20.785L 33.7052,22.315C 32.0485,23.4916 30.2002,24.08 28.1602,24.08C 26.0969,24.08 24.4294,23.3408 23.1577,21.8625C 21.886,20.3842 21.2502,18.295 21.2502,15.595C 21.2502,13.2617 21.9144,11.2958 23.2427,9.69745C 24.571,8.09918 26.2985,7.29999 28.4252,7.29999C 30.4152,7.29999 31.9411,7.9975 33.0027,9.39252C 34.0644,10.7875 34.5952,12.6933 34.5952,15.11L 34.5952,15.75L 22.7502,15.75 Z M 33.0952,14.44C 33.0319,12.5966 32.5894,11.1641 31.7677,10.1425C 30.946,9.12079 29.8102,8.60999 28.3602,8.60999C 26.8602,8.60999 25.6185,9.11249 24.6352,10.1175C 23.6519,11.1225 23.0452,12.5633 22.8152,14.44L 33.0952,14.44 Z "/> <Path x:Name="Path_6" Width="12.31" Height="16.39" Canvas.Left="37.7703" Canvas.Top="7.29999" Stretch="Fill" Fill="#80000000" Data="F1 M 48.6453,23.69L 48.6453,14.375C 48.6453,10.5317 47.2587,8.60999 44.4853,8.60999C 42.9453,8.60999 41.6803,9.17499 40.6903,10.305C 39.7003,11.435 39.2053,12.8333 39.2053,14.5L 39.2053,23.69L 37.7703,23.69L 37.7703,7.69L 39.2053,7.69L 39.2053,10.595L 39.2703,10.595C 40.437,8.39832 42.2587,7.29999 44.7353,7.29999C 46.4653,7.29999 47.7887,7.875 48.7053,9.02496C 49.622,10.175 50.0803,11.8183 50.0803,13.955L 50.0803,23.69L 48.6453,23.69 Z "/> <Path x:Name="Path_7" Width="13.955" Height="24.08" Canvas.Left="53.2504" Canvas.Top="0" Stretch="Fill" Fill="#80000000" Data="F1 M 65.7654,23.69L 65.7654,20.785L 65.7054,20.785C 65.1854,21.795 64.4146,22.5966 63.3929,23.19C 62.3713,23.7833 61.2204,24.08 59.9404,24.08C 57.9704,24.08 56.3629,23.3616 55.1179,21.925C 53.8729,20.4883 53.2504,18.5033 53.2504,15.97C 53.2504,13.3867 53.9304,11.2958 55.2904,9.69745C 56.6504,8.09918 58.4138,7.29999 60.5804,7.29999C 62.9771,7.29999 64.6854,8.28333 65.7054,10.25L 65.7654,10.25L 65.7654,0L 67.2054,0L 67.2054,23.69L 65.7654,23.69 Z M 65.7654,13.955C 65.7654,12.465 65.2946,11.2017 64.3529,10.165C 63.4113,9.1283 62.1438,8.60999 60.5504,8.60999C 58.8738,8.60999 57.4879,9.2533 56.3929,10.54C 55.2979,11.8267 54.7504,13.595 54.7504,15.845C 54.7504,18.055 55.2429,19.7617 56.2279,20.965C 57.2129,22.1683 58.4821,22.77 60.0354,22.77C 61.8554,22.77 63.2654,22.2042 64.2654,21.0724C 65.2654,19.9408 65.7654,18.5633 65.7654,16.94L 65.7654,13.955 Z "/> </Canvas> <Canvas x:Name="Group_4" Width="127.299" Height="21.9938" Canvas.Left="180.065" Canvas.Top="22.217"> <Path x:Name="Path_8" Width="8.36896" Height="16.4121" Canvas.Left="0" Canvas.Top="0.644592" Stretch="Fill" Fill="#80000000" Data="F1 M 0,16.2173L 0,14.9636C 1.13805,15.6884 2.28908,16.0508 3.45313,16.0508C 4.6927,16.0508 5.63361,15.7941 6.27582,15.2806C 6.91805,14.767 7.23915,14.0498 7.23915,13.129C 7.23915,12.3168 7.0237,11.6693 6.59282,11.1863C 6.16191,10.7036 5.22632,10.0442 3.78603,9.20831C 2.17812,8.27338 1.1599,7.49005 0.731339,6.85846C 0.302811,6.22687 0.0885468,5.49786 0.0885468,4.67145C 0.0885468,3.54999 0.52417,2.59845 1.3954,1.81689C 2.26666,1.03534 3.4295,0.644592 4.88396,0.644592C 5.82838,0.644592 6.77284,0.802795 7.71729,1.1192L 7.71729,2.2702C 6.787,1.84991 5.79417,1.63983 4.73875,1.63983C 3.66206,1.63983 2.80794,1.91254 2.17635,2.45795C 1.54475,3.00336 1.22894,3.69751 1.22894,4.54047C 1.22894,5.35028 1.44499,5.99548 1.87708,6.47595C 2.30916,6.95648 3.24062,7.60986 4.67145,8.43628C 6.15424,9.27679 7.14117,10.0235 7.63228,10.6764C 8.1234,11.3292 8.36896,12.0795 8.36896,12.9271C 8.36896,14.1454 7.9463,15.1382 7.10103,15.9056C 6.25575,16.673 5.06221,17.0567 3.5204,17.0567C 2.97499,17.0567 2.34636,16.9717 1.63448,16.8017C 0.922607,16.6317 0.377762,16.4369 0,16.2173 Z "/> <Path x:Name="Path_9" Width="8.43626" Height="11.8859" Canvas.Left="10.5153" Canvas.Top="5.17084" Stretch="Fill" Fill="#80000000" Data="F1 M 17.9315,16.7805L 17.9315,14.5102L 17.889,14.5102C 17.5254,15.2847 16.9989,15.9027 16.3094,16.3643C 15.62,16.8259 14.855,17.0567 14.0145,17.0567C 12.9378,17.0567 12.0854,16.7545 11.4574,16.15C 10.8293,15.5456 10.5153,14.7817 10.5153,13.8586C 10.5153,11.8799 11.8257,10.684 14.4465,10.2708L 17.9315,9.75378C 17.9315,7.31708 17.0166,6.09875 15.1867,6.09875C 13.9401,6.09875 12.7265,6.60052 11.5459,7.60394L 11.5459,6.375C 11.9662,6.04449 12.5358,5.76117 13.2548,5.52502C 13.9737,5.28888 14.6508,5.17084 15.2859,5.17084C 16.4523,5.17084 17.3548,5.5321 17.9935,6.25458C 18.6322,6.97711 18.9515,8.02899 18.9515,9.41022L 18.9515,16.7805L 17.9315,16.7805 Z M 14.8113,11.135C 13.6237,11.305 12.7896,11.5801 12.3091,11.9603C 11.8287,12.3404 11.5884,12.9578 11.5884,13.8125C 11.5884,14.4854 11.8121,15.0397 12.2595,15.4753C 12.707,15.9109 13.3286,16.1288 14.1242,16.1288C 15.2174,16.1288 16.1253,15.7244 16.8478,14.9157C 17.5703,14.1071 17.9315,13.0652 17.9315,11.7902L 17.9315,10.6817L 14.8113,11.135 Z "/> <Path x:Name="Path_10" Width="15.2292" Height="11.6096" Canvas.Left="21.8133" Canvas.Top="5.17084" Stretch="Fill" Fill="#80000000" Data="F1 M 36.0224,16.7805L 36.0224,9.96271C 36.0224,8.539 35.7993,7.53906 35.3531,6.96295C 34.9068,6.38684 34.2009,6.09875 33.2352,6.09875C 32.3403,6.09875 31.5682,6.48248 30.9189,7.24982C 30.2696,8.01715 29.9449,8.98053 29.9449,10.1398L 29.9449,16.7805L 28.9285,16.7805L 28.9285,9.88483C 28.9285,7.36078 27.9687,6.09875 26.0491,6.09875C 25.1283,6.09875 24.3615,6.48419 23.7488,7.25513C 23.1361,8.02606 22.8297,9.02417 22.8297,10.2496L 22.8297,16.7805L 21.8133,16.7805L 21.8133,5.44708L 22.8297,5.44708L 22.8297,7.3277L 22.8758,7.3277C 23.6644,5.88983 24.819,5.17084 26.3395,5.17084C 27.1659,5.17084 27.8725,5.40875 28.4592,5.88446C 29.0459,6.36029 29.442,6.98535 29.6474,7.75983C 30.0016,6.94049 30.5087,6.3042 31.1686,5.85089C 31.8285,5.39752 32.5469,5.17084 33.3237,5.17084C 35.8029,5.17084 37.0424,6.70557 37.0424,9.77502L 37.0424,16.7805L 36.0224,16.7805 Z "/> <Path x:Name="Path_11" Width="9.88126" Height="16.8229" Canvas.Left="39.9467" Canvas.Top="5.17084" Stretch="Fill" Fill="#80000000" Data="F1 M 41.0092,14.7652L 40.9631,14.7652L 40.9631,21.9938L 39.9467,21.9938L 39.9467,5.44708L 40.9631,5.44708L 40.9631,7.78107L 41.0092,7.78107C 41.4129,6.94757 41.9932,6.3042 42.7499,5.85089C 43.5067,5.39752 44.3383,5.17084 45.245,5.17084C 46.6853,5.17084 47.8092,5.66669 48.6167,6.65839C 49.4242,7.65002 49.8279,8.99823 49.8279,10.7029C 49.8279,12.5989 49.3652,14.1319 48.4396,15.3018C 47.514,16.4717 46.291,17.0567 44.7704,17.0567C 43.0728,17.0567 41.819,16.2928 41.0092,14.7652 Z M 40.9631,10.5507L 40.9631,11.978C 40.9631,13.1136 41.3208,14.0894 42.0363,14.9051C 42.7517,15.7209 43.6926,16.1288 44.859,16.1288C 46.0183,16.1288 46.9592,15.6324 47.6817,14.6395C 48.4042,13.6467 48.7654,12.3427 48.7654,10.7277C 48.7654,9.3111 48.4337,8.18536 47.7702,7.35077C 47.1068,6.51611 46.2213,6.09875 45.114,6.09875C 43.7941,6.09875 42.7723,6.54144 42.0487,7.42688C 41.325,8.31232 40.9631,9.35358 40.9631,10.5507 Z "/> <Rectangle x:Name="Rectangle_9" Width="1.01643" Height="16.7805" Canvas.Left="52.1868" Canvas.Top="0" Stretch="Fill" Fill="#80000000"/> <Path x:Name="Path_13" Width="9.45273" Height="11.8859" Canvas.Left="55.6718" Canvas.Top="5.17084" Stretch="Fill" Fill="#80000000" Data="F1 M 56.7343,11.1563C 56.7343,12.7146 57.0944,13.9329 57.8145,14.8113C 58.5347,15.6896 59.5216,16.1288 60.7754,16.1288C 62.0433,16.1288 63.2829,15.6601 64.4941,14.7227L 64.4941,15.8065C 63.3207,16.64 62.0114,17.0567 60.5664,17.0567C 59.1049,17.0567 57.9238,16.5331 57.023,15.486C 56.1222,14.4388 55.6718,12.959 55.6718,11.0464C 55.6718,9.39374 56.1423,8.00122 57.0832,6.86908C 58.0241,5.73694 59.2477,5.17084 60.7541,5.17084C 62.1637,5.17084 63.2445,5.66492 63.9965,6.65302C 64.7485,7.64117 65.1246,8.99115 65.1246,10.7029L 65.1246,11.1563L 56.7343,11.1563 Z M 64.0621,10.2283C 64.0172,8.92267 63.7037,7.90796 63.1217,7.18427C 62.5397,6.46063 61.7352,6.09875 60.7081,6.09875C 59.6456,6.09875 58.7661,6.45471 58.0695,7.16656C 57.373,7.87848 56.9433,8.89905 56.7804,10.2283L 64.0621,10.2283 Z "/> <Path x:Name="Path_15" Width="8.86479" Height="15.8702" Canvas.Left="73.2599" Canvas.Top="0.910217" Stretch="Fill" Fill="#80000000" Data="F1 M 74.3543,10.4161L 74.3543,16.7805L 73.2599,16.7805L 73.2599,0.910217L 77.0884,0.910217C 78.72,0.910217 79.9672,1.28802 80.8302,2.04358C 81.6932,2.79913 82.1247,3.90411 82.1247,5.35858C 82.1247,6.83429 81.6436,8.04608 80.6815,8.99408C 79.7193,9.94208 78.3705,10.4161 76.6351,10.4161L 74.3543,10.4161 Z M 74.3543,1.91608L 74.3543,9.41022L 76.6139,9.41022C 78.0447,9.41022 79.1326,9.06903 79.8775,8.38666C 80.6224,7.70435 80.9949,6.73865 80.9949,5.48956C 80.9949,3.10724 79.6266,1.91608 76.8901,1.91608L 74.3543,1.91608 Z "/> <Path x:Name="Path_17" Width="8.43622" Height="11.8859" Canvas.Left="83.0492" Canvas.Top="5.17084" Stretch="Fill" Fill="#80000000" Data="F1 M 90.4654,16.7805L 90.4654,14.5102L 90.4229,14.5102C 90.0593,15.2847 89.5327,15.9027 88.8433,16.3643C 88.1539,16.8259 87.3889,17.0567 86.5483,17.0567C 85.4716,17.0567 84.6193,16.7545 83.9912,16.15C 83.3632,15.5456 83.0492,14.7817 83.0492,13.8586C 83.0492,11.8799 84.3596,10.684 86.9804,10.2708L 90.4654,9.75378C 90.4654,7.31708 89.5505,6.09875 87.7206,6.09875C 86.4739,6.09875 85.2603,6.60052 84.0798,7.60394L 84.0798,6.375C 84.5,6.04449 85.0697,5.76117 85.7886,5.52502C 86.5076,5.28888 87.1846,5.17084 87.8198,5.17084C 88.9862,5.17084 89.8887,5.5321 90.5274,6.25458C 91.166,6.97711 91.4854,8.02899 91.4854,9.41022L 91.4854,16.7805L 90.4654,16.7805 Z M 87.3452,11.135C 86.1576,11.305 85.3235,11.5801 84.843,11.9603C 84.3625,12.3404 84.1223,12.9578 84.1223,13.8125C 84.1223,14.4854 84.346,15.0397 84.7934,15.4753C 85.2408,15.9109 85.8624,16.1288 86.6581,16.1288C 87.7513,16.1288 88.6591,15.7244 89.3817,14.9157C 90.1042,14.1071 90.4654,13.0652 90.4654,11.7902L 90.4654,10.6817L 87.3452,11.135 Z "/> <Path x:Name="Path_20" Width="8.20248" Height="11.8859" Canvas.Left="93.5255" Canvas.Top="5.17084" Stretch="Fill" Fill="#80000000" Data="F1 M 101.682,16.2811C 100.841,16.7982 99.8379,17.0567 98.6715,17.0567C 97.1297,17.0567 95.8866,16.5272 94.9421,15.4683C 93.9977,14.4093 93.5255,13.0239 93.5255,11.3121C 93.5255,9.51294 94.0567,8.03961 95.1192,6.89209C 96.1817,5.74457 97.5476,5.17084 99.2169,5.17084C 100.079,5.17084 100.916,5.34796 101.728,5.70209L 101.728,6.85315C 100.916,6.35022 100.027,6.09875 99.0611,6.09875C 97.7318,6.09875 96.6539,6.5769 95.8275,7.53314C 95.0012,8.48938 94.588,9.72662 94.588,11.2448C 94.588,12.7134 94.9663,13.8946 95.7231,14.7883C 96.4798,15.6819 97.478,16.1288 98.7176,16.1288C 99.8532,16.1288 100.841,15.8254 101.682,15.2186L 101.682,16.2811 Z "/> <Path x:Name="Path_21" Width="7.95459" Height="16.7805" Canvas.Left="103.867" Canvas.Top="0" Stretch="Fill" Fill="#80000000" Data="F1 M 110.352,16.7805L 104.93,11.1811L 104.884,11.1811L 104.884,16.7805L 103.867,16.7805L 103.867,0L 104.884,0L 104.884,10.8163L 104.93,10.8163L 110.076,5.44708L 111.393,5.44708L 106.013,10.9367L 111.822,16.7805L 110.352,16.7805 Z "/> <Path x:Name="Path_23" Width="9.15521" Height="16.1359" Canvas.Left="118.144" Canvas.Top="0.644592" Stretch="Fill" Fill="#80000000" Data="F1 M 118.144,16.7805L 118.144,15.6967L 122.472,11.0925C 124.014,9.44684 125.026,8.2326 125.51,7.44989C 125.995,6.66718 126.237,5.79657 126.237,4.83795C 126.237,3.80609 125.948,3.00397 125.372,2.43134C 124.796,1.85883 123.98,1.57251 122.925,1.57251C 121.525,1.57251 120.205,2.12262 118.965,3.22296L 118.965,2.02582C 120.174,1.10504 121.539,0.644592 123.06,0.644592C 124.417,0.644592 125.463,1.0094 126.198,1.73895C 126.932,2.46857 127.299,3.44604 127.299,4.67145C 127.299,5.76471 127.037,6.75397 126.513,7.6394C 125.989,8.52484 124.871,9.87891 123.159,11.7017L 119.274,15.8065L 119.274,15.8489L 127.21,15.8489L 127.21,16.7805L 118.144,16.7805 Z "/> </Canvas> <Canvas x:Name="Group_16" Width="78.7205" Height="31.36" Canvas.Left="91.0116" Canvas.Top="15.3174"> <Path x:Name="Path_25" Width="13.76" Height="22.4" Canvas.Left="0" Canvas.Top="1.28003" Stretch="Fill" Fill="#FF000000" Data="F1 M 2.56001,15.04L 2.56001,23.6801L 0,23.6801L 0,1.28003L 6.18,1.28003C 8.58667,1.28003 10.4517,1.85583 11.775,3.00757C 13.0983,4.15918 13.76,5.78339 13.76,7.88C 13.76,9.98004 13.02,11.6984 11.54,13.035C 10.06,14.3717 8.06168,15.04 5.545,15.04L 2.56001,15.04 Z M 2.56001,3.52002L 2.56001,12.8L 5.305,12.8C 7.11833,12.8 8.50083,12.3817 9.4525,11.545C 10.4042,10.7084 10.88,9.52673 10.88,8C 10.88,5.01337 9.13167,3.52002 5.63501,3.52002L 2.56001,3.52002 Z "/> <Rectangle x:Name="Rectangle_18" Width="2.56" Height="23.6801" Canvas.Left="16.9601" Canvas.Top="0" Stretch="Fill" Fill="#FF000000"/> <Path x:Name="Path_28" Width="12.8" Height="16.64" Canvas.Left="22.7202" Canvas.Top="7.36005" Stretch="Fill" Fill="#FF000000" Data="F1 M 35.5202,23.6801L 32.9602,23.6801L 32.9602,21.04L 32.8952,21.04C 31.7652,23.0134 30.0985,24 27.8952,24C 26.2752,24 25.0077,23.5767 24.0927,22.73C 23.1777,21.8834 22.7202,20.7584 22.7202,19.355C 22.7202,16.3517 24.5086,14.605 28.0852,14.1151L 32.9602,13.4401C 32.9602,10.88 31.8452,9.60004 29.6152,9.60004C 27.6586,9.60004 25.8936,10.2401 24.3202,11.52L 24.3202,8.875C 25.9102,7.86505 27.7419,7.36005 29.8152,7.36005C 33.6185,7.36005 35.5202,9.34338 35.5202,13.3101L 35.5202,23.6801 Z M 32.9602,15.36L 28.9852,15.9C 27.7619,16.0667 26.8385,16.3642 26.2152,16.7925C 25.5919,17.2209 25.2802,17.9784 25.2802,19.0651C 25.2802,19.8584 25.5677,20.5059 26.1427,21.0076C 26.7177,21.5092 27.4819,21.76 28.4352,21.76C 29.7452,21.76 30.8269,21.3083 31.6802,20.405C 32.5336,19.5017 32.9602,18.3584 32.9602,16.975L 32.9602,15.36 Z "/> <Path x:Name="Path_29" Width="15.04" Height="23.68" Canvas.Left="37.4403" Canvas.Top="7.68005" Stretch="Fill" Fill="#FF000000" Data="F1 M 52.4803,7.68005L 45.1553,26.27C 43.8653,29.6633 42.0537,31.36 39.7203,31.36C 39.067,31.36 38.5203,31.29 38.0803,31.15L 38.0803,28.8C 38.6203,29.0134 39.1153,29.12 39.5653,29.12C 40.8287,29.12 41.7753,28.335 42.4053,26.765L 43.6603,23.6801L 37.4403,7.68005L 40.2853,7.68005L 44.5803,20.02C 44.6303,20.1767 44.7387,20.5834 44.9053,21.2401L 45.0003,21.2401C 45.0503,20.9901 45.1536,20.5934 45.3103,20.05L 49.8203,7.68005L 52.4803,7.68005 Z "/> <Path x:Name="Path_33" Width="13.76" Height="16.64" Canvas.Left="53.4404" Canvas.Top="7.36005" Stretch="Fill" Fill="#FF000000" Data="F1 M 67.2004,16.3201L 56.0004,16.3201C 56.0438,18.0567 56.5254,19.3975 57.4454,20.3425C 58.3654,21.2875 59.6321,21.76 61.2454,21.76C 63.0588,21.76 64.7238,21.2267 66.2404,20.16L 66.2404,22.505C 64.8404,23.5017 62.9871,24 60.6804,24C 58.4271,24 56.6571,23.2784 55.3704,21.835C 54.0838,20.3917 53.4404,18.36 53.4404,15.7401C 53.4404,13.2667 54.1363,11.2517 55.5279,9.69507C 56.9196,8.13837 58.6488,7.36005 60.7154,7.36005C 62.7788,7.36005 64.3754,8.03253 65.5054,9.37756C 66.6354,10.7225 67.2004,12.5917 67.2004,14.985L 67.2004,16.3201 Z M 64.6404,14.08C 64.6304,12.6667 64.2754,11.5667 63.5754,10.78C 62.8754,9.99335 61.9021,9.60004 60.6554,9.60004C 59.4521,9.60004 58.4304,10.0134 57.5904,10.84C 56.7504,11.6667 56.2321,12.7467 56.0354,14.08L 64.6404,14.08 Z "/> <Path x:Name="Path_34" Width="8.32001" Height="16.32" Canvas.Left="70.4005" Canvas.Top="7.36005" Stretch="Fill" Fill="#FF000000" Data="F1 M 78.7205,10.2401C 78.2739,9.81335 77.6305,9.60004 76.7905,9.60004C 75.7005,9.60004 74.7897,10.1217 74.058,11.165C 73.3264,12.2084 72.9605,13.63 72.9605,15.4301L 72.9605,23.6801L 70.4005,23.6801L 70.4005,7.68005L 72.9605,7.68005L 72.9605,10.8151L 73.0205,10.8151C 73.3839,9.72839 73.9397,8.88086 74.688,8.27252C 75.4364,7.66418 76.2722,7.36005 77.1955,7.36005C 77.8589,7.36005 78.3672,7.43335 78.7205,7.58002L 78.7205,10.2401 Z "/> </Canvas> </Canvas> <Canvas x:Name="Layer_1_23" Width="800" Height="600"> <Path x:Name="Path_35" Width="7.69696" Height="7.54688" Canvas.Left="643.935" Canvas.Top="14.7578" Stretch="Fill" Fill="#FF000000" Data="F1 M 651.632,22.3046L 650.749,22.3046L 650.749,17.2365C 650.749,16.8366 650.773,16.3492 650.822,15.7736L 650.801,15.7736C 650.717,16.1104 650.641,16.3546 650.575,16.5052L 648.002,22.3046L 647.571,22.3046L 644.993,16.5472C 644.919,16.386 644.844,16.1282 644.767,15.7736L 644.746,15.7736C 644.774,16.0757 644.788,16.5666 644.788,17.247L 644.788,22.3046L 643.935,22.3046L 643.935,14.7578L 645.103,14.7578L 647.418,20.0204C 647.594,20.4174 647.708,20.7189 647.76,20.9258L 647.797,20.9258C 647.948,20.5122 648.069,20.2032 648.16,19.9995L 650.522,14.7578L 651.632,14.7578L 651.632,22.3046 Z "/> <Path x:Name="Path_36" Width="1.1311" Height="7.87823" Canvas.Left="653.05" Canvas.Top="14.4263" Stretch="Fill" Fill="#FF000000" Data="F1 M 654.034,22.3046L 653.172,22.3046L 653.172,16.9155L 654.034,16.9155M 654.182,14.9841C 654.182,15.142 654.126,15.2756 654.016,15.3842C 653.905,15.4931 653.771,15.5472 653.613,15.5472C 653.459,15.5472 653.327,15.4947 653.216,15.3893C 653.106,15.284 653.05,15.1492 653.05,14.9841C 653.05,14.8262 653.106,14.6942 653.216,14.5869C 653.327,14.4799 653.459,14.4263 653.613,14.4263C 653.771,14.4263 653.905,14.4799 654.016,14.5869C 654.126,14.6942 654.182,14.8262 654.182,14.9841 Z "/> <Path x:Name="Path_38" Width="4.05103" Height="5.65204" Canvas.Left="655.263" Canvas.Top="16.7841" Stretch="Fill" Fill="#FF000000" Data="F1 M 659.304,22.0573C 658.889,22.31 658.397,22.4361 657.825,22.4361C 657.053,22.4361 656.431,22.1804 655.957,21.6679C 655.494,21.17 655.263,20.5278 655.263,19.7416C 655.263,18.8575 655.516,18.144 656.023,17.5997C 656.53,17.056 657.211,16.7841 658.067,16.7841C 658.537,16.7841 658.953,16.8757 659.314,17.0576L 659.314,17.9419C 658.914,17.6614 658.486,17.5208 658.03,17.5208C 657.483,17.5208 657.036,17.7123 656.689,18.0944C 656.328,18.4875 656.147,19.01 656.147,19.6627C 656.147,20.291 656.312,20.7873 656.644,21.1522C 656.975,21.5173 657.42,21.6994 657.978,21.6994C 658.448,21.6994 658.889,21.5453 659.304,21.2363L 659.304,22.0573 Z "/> <Path x:Name="Path_41" Width="2.80957" Height="5.48389" Canvas.Left="660.5" Canvas.Top="16.8207" Stretch="Fill" Fill="#FF000000" Data="F1 M 663.31,17.7892C 663.159,17.6733 662.94,17.6154 662.652,17.6154C 662.301,17.6154 662.007,17.7733 661.768,18.0891C 661.498,18.4439 661.363,18.9333 661.363,19.5576L 661.363,22.3046L 660.5,22.3046L 660.5,16.9156L 661.363,16.9156L 661.363,18.0261L 661.385,18.0261C 661.511,17.6334 661.705,17.3298 661.969,17.1155C 662.214,16.9191 662.489,16.8207 662.794,16.8207C 663.022,16.8207 663.194,16.8455 663.31,16.8946L 663.31,17.7892 Z "/> <Path x:Name="Path_42" Width="5.3031" Height="5.65204" Canvas.Left="663.592" Canvas.Top="16.7841" Stretch="Fill" Fill="#FF000000" Data="F1 M 668.011,19.6206C 668.011,18.9297 667.855,18.4032 667.543,18.0419C 667.241,17.6945 666.818,17.5208 666.275,17.5208C 665.738,17.5208 665.308,17.6964 664.986,18.047C 664.645,18.4229 664.475,18.9542 664.475,19.6416C 664.475,20.2875 664.638,20.7916 664.965,21.1546C 665.291,21.5178 665.727,21.6994 666.275,21.6994C 666.843,21.6994 667.276,21.5151 667.574,21.1468C 667.865,20.7889 668.011,20.2805 668.011,19.6206 Z M 668.895,19.5891C 668.895,20.4489 668.653,21.1384 668.169,21.6574C 667.685,22.1766 667.032,22.4361 666.211,22.4361C 665.401,22.4361 664.76,22.1766 664.286,21.6574C 663.823,21.1557 663.592,20.4941 663.592,19.6732C 663.592,18.7365 663.855,18.0123 664.381,17.4997C 664.868,17.0228 665.521,16.7841 666.338,16.7841C 667.141,16.7841 667.768,17.0333 668.219,17.5313C 668.669,18.0297 668.895,18.7155 668.895,19.5891 Z "/> <Path x:Name="Path_50" Width="3.3092" Height="5.65234" Canvas.Left="669.755" Canvas.Top="16.7839" Stretch="Fill" Fill="#FF000000" Data="F1 M 673.064,20.8626C 673.064,21.3047 672.899,21.6715 672.57,21.9625C 672.209,22.2783 671.716,22.4362 671.091,22.4362C 670.579,22.4362 670.134,22.3276 669.755,22.1099L 669.755,21.1835C 670.176,21.5279 670.642,21.6993 671.154,21.6993C 671.838,21.6993 672.18,21.4489 672.18,20.947C 672.18,20.7363 672.105,20.5627 671.954,20.4258C 671.803,20.2889 671.509,20.1243 671.07,19.9311C 670.618,19.7347 670.297,19.5313 670.107,19.3205C 669.88,19.0718 669.766,18.7469 669.766,18.347C 669.766,17.8981 669.943,17.5255 670.297,17.2288C 670.651,16.9324 671.107,16.7839 671.665,16.7839C 672.093,16.7839 672.477,16.8682 672.817,17.0367L 672.817,17.9048C 672.463,17.6491 672.056,17.5209 671.596,17.5209C 671.309,17.5209 671.079,17.5912 670.907,17.7313C 670.735,17.8716 670.649,18.0522 670.649,18.2734C 670.649,18.5121 670.721,18.6981 670.865,18.8312C 670.995,18.9543 671.265,19.1033 671.675,19.2785C 672.135,19.4717 672.466,19.67 672.67,19.8732C 672.933,20.1332 673.064,20.4627 673.064,20.8626 Z "/> <Path x:Name="Path_51" Width="5.30304" Height="5.65204" Canvas.Left="673.809" Canvas.Top="16.7841" Stretch="Fill" Fill="#FF000000" Data="F1 M 678.228,19.6206C 678.228,18.9297 678.072,18.4032 677.76,18.0419C 677.458,17.6945 677.036,17.5208 676.492,17.5208C 675.955,17.5208 675.526,17.6964 675.203,18.047C 674.863,18.4229 674.693,18.9542 674.693,19.6416C 674.693,20.2875 674.856,20.7916 675.182,21.1546C 675.508,21.5178 675.945,21.6994 676.492,21.6994C 677.06,21.6994 677.493,21.5151 677.791,21.1468C 678.082,20.7889 678.228,20.2805 678.228,19.6206 Z M 679.112,19.5891C 679.112,20.4489 678.87,21.1384 678.386,21.6574C 677.902,22.1766 677.249,22.4361 676.429,22.4361C 675.618,22.4361 674.977,22.1766 674.503,21.6574C 674.04,21.1557 673.809,20.4941 673.809,19.6732C 673.809,18.7365 674.072,18.0123 674.598,17.4997C 675.085,17.0228 675.738,16.7841 676.555,16.7841C 677.358,16.7841 677.985,17.0333 678.436,17.5313C 678.886,18.0297 679.112,18.7155 679.112,19.5891 Z "/> <Path x:Name="Path_52" Width="3.25671" Height="8.09412" Canvas.Left="679.551" Canvas.Top="14.2105" Stretch="Fill" Fill="#FF000000" Data="F1 M 682.808,15.0841C 682.64,14.9893 682.448,14.9421 682.234,14.9421C 681.631,14.9421 681.33,15.3231 681.33,16.084L 681.33,16.9156L 682.592,16.9156L 682.592,17.6472L 681.33,17.6472L 681.33,22.3046L 680.467,22.3046L 680.467,17.6472L 679.551,17.6472L 679.551,16.9156L 680.467,16.9156L 680.467,16.0421C 680.467,15.4492 680.651,14.9841 681.019,14.6473C 681.335,14.3563 681.722,14.2105 682.182,14.2105C 682.448,14.2105 682.657,14.2421 682.808,14.3051L 682.808,15.0841 Z "/> <Path x:Name="Path_60" Width="3.14624" Height="7.10492" Canvas.Left="682.958" Canvas.Top="15.3209" Stretch="Fill" Fill="#FF000000" Data="F1 M 686.104,22.252C 685.901,22.3679 685.631,22.4258 685.294,22.4258C 684.354,22.4258 683.884,21.8963 683.884,20.8362L 683.884,17.647L 682.958,17.647L 682.958,16.9155L 683.884,16.9155L 683.884,15.5997C 684.157,15.5125 684.445,15.4195 684.747,15.3209L 684.747,16.9155L 686.104,16.9155L 686.104,17.647L 684.747,17.647L 684.747,20.6889C 684.747,21.0505 684.808,21.3073 684.931,21.46C 685.054,21.6126 685.259,21.6888 685.547,21.6888C 685.76,21.6888 685.946,21.6309 686.104,21.5153L 686.104,22.252 Z "/> <Path x:Name="Path_61" Width="1.97418" Height="1.95166" Canvas.Left="686.532" Canvas.Top="16.2545" Stretch="Fill" Fill="#FF000000" Data="F1 M 687.755,16.9545C 687.755,16.8828 687.735,16.8305 687.694,16.7982C 687.649,16.7613 687.571,16.743 687.463,16.743L 687.308,16.743L 687.308,17.1703L 687.496,17.1703C 687.668,17.1703 687.755,17.0986 687.755,16.9545 Z M 687.997,17.8466L 687.784,17.8466L 687.647,17.5454C 687.578,17.3945 687.503,17.3193 687.424,17.3193L 687.308,17.3193L 687.308,17.8466L 687.132,17.8466L 687.132,16.5912L 687.485,16.5912C 687.641,16.5912 687.76,16.6266 687.84,16.6966C 687.909,16.7573 687.943,16.8362 687.943,16.9335C 687.943,17.0197 687.915,17.093 687.859,17.1534C 687.804,17.214 687.726,17.2544 687.625,17.2754L 687.625,17.2808C 687.695,17.2967 687.764,17.374 687.832,17.5123M 688.388,17.2323C 688.388,16.9838 688.303,16.7772 688.135,16.6115C 687.967,16.4455 687.761,16.3625 687.519,16.3625C 687.269,16.3625 687.061,16.446 686.895,16.6131C 686.73,16.7805 686.648,16.9866 686.648,17.2323C 686.648,17.4824 686.733,17.6909 686.904,17.8585C 687.071,18.0234 687.276,18.1059 687.519,18.1059C 687.76,18.1059 687.964,18.0223 688.134,17.8553C 688.303,17.6882 688.388,17.4805 688.388,17.2323 Z M 688.506,17.2272C 688.506,17.5034 688.41,17.7354 688.22,17.9237C 688.029,18.1118 687.794,18.2061 687.514,18.2061C 687.232,18.2061 686.997,18.1145 686.811,17.9307C 686.625,17.7475 686.532,17.5155 686.532,17.235C 686.532,16.9596 686.626,16.7271 686.816,16.5382C 687.005,16.3493 687.241,16.2545 687.522,16.2545C 687.798,16.2545 688.03,16.345 688.218,16.5255C 688.41,16.7109 688.506,16.9445 688.506,17.2272 Z "/> <Path x:Name="Path_62" Width="7.19727" Height="13.5842" Canvas.Left="643.944" Canvas.Top="24.7344" Stretch="Fill" Fill="#FF000000" Data="F1 M 651.141,38.3186L 643.944,38.3186L 643.944,24.7344L 650.828,24.7344L 650.828,26.1744L 645.534,26.1744L 645.534,30.6928L 650.44,30.6928L 650.44,32.1328L 645.534,32.1328L 645.534,36.8787L 651.141,36.8787L 651.141,38.3186 Z "/> <Path x:Name="Path_63" Width="8.39026" Height="9.70026" Canvas.Left="651.939" Canvas.Top="28.6183" Stretch="Fill" Fill="#FF000000" Data="F1 M 660.329,28.6183L 657.072,33.5253L 660.272,38.3186L 658.473,38.3186L 656.57,35.1735C 656.469,35.0095 656.327,34.7632 656.144,34.4347L 656.106,34.4347C 656.081,34.4916 655.932,34.7379 655.661,35.1735L 653.719,38.3186L 651.939,38.3186L 655.234,33.5633L 652.072,28.6183L 653.871,28.6183L 655.755,31.9339C 655.869,32.1296 656.005,32.3823 656.162,32.6916L 656.2,32.6916C 656.219,32.6601 656.368,32.4077 656.645,31.9339L 658.625,28.6183L 660.329,28.6183 Z "/> <Path x:Name="Path_65" Width="8.92065" Height="14.399" Canvas.Left="661.575" Canvas.Top="28.3814" Stretch="Fill" Fill="#FF000000" Data="F1 M 668.905,33.1558C 668.905,32.0823 668.655,31.2393 668.157,30.6265C 667.658,30.014 666.982,29.7077 666.13,29.7077C 665.196,29.7077 664.448,30.0424 663.886,30.7119C 663.381,31.3309 663.128,32.0948 663.128,33.0042L 663.128,34.3589C 663.128,35.142 663.377,35.8083 663.876,36.3577C 664.407,36.9387 665.082,37.2292 665.903,37.2292C 666.825,37.2292 667.551,36.8818 668.081,36.1872C 668.63,35.4672 668.905,34.4568 668.905,33.1558 Z M 670.496,33.1747C 670.496,34.7599 670.12,36.0388 669.369,37.0115C 668.574,38.0408 667.475,38.5554 666.073,38.5554C 664.798,38.5554 663.829,38.0122 663.166,36.926L 663.128,36.926L 663.128,42.7805L 661.575,42.7805L 661.575,28.6183L 663.128,28.6183L 663.128,30.3234L 663.166,30.3234C 663.93,29.0289 665.048,28.3814 666.519,28.3814C 667.806,28.3814 668.804,28.8489 669.511,29.7834C 670.168,30.6424 670.496,31.7728 670.496,33.1747 Z "/> <Path x:Name="Path_68" Width="5.05688" Height="9.87085" Canvas.Left="671.932" Canvas.Top="28.4478" Stretch="Fill" Fill="#FF000000" Data="F1 M 676.989,30.1909C 676.717,29.9825 676.322,29.8782 675.805,29.8782C 675.174,29.8782 674.643,30.1625 674.214,30.7308C 673.728,31.3686 673.485,32.2497 673.485,33.3738L 673.485,38.3186L 671.932,38.3186L 671.932,28.6183L 673.485,28.6183L 673.485,30.6171L 673.523,30.6171C 673.75,29.9098 674.1,29.3636 674.574,28.9783C 675.016,28.6245 675.511,28.4478 676.061,28.4478C 676.471,28.4478 676.78,28.4919 676.989,28.5803L 676.989,30.1909 Z "/> <Path x:Name="Path_69" Width="8.45648" Height="10.174" Canvas.Left="677.108" Canvas.Top="28.3814" Stretch="Fill" Fill="#FF000000" Data="F1 M 683.973,32.5401C 683.961,31.6561 683.752,30.9676 683.348,30.475C 682.925,29.9633 682.326,29.7076 681.549,29.7076C 680.816,29.7076 680.195,29.9682 679.683,30.4893C 679.172,31.0102 678.856,31.6938 678.736,32.5401M 685.564,33.8569L 678.717,33.8569C 678.743,34.9431 679.033,35.7768 679.589,36.3577C 680.144,36.9387 680.908,37.2291 681.88,37.2291C 682.972,37.2291 683.973,36.8756 684.882,36.1683L 684.882,37.6177C 684.036,38.2428 682.912,38.5554 681.511,38.5554C 680.185,38.5554 679.134,38.1385 678.357,37.3051C 677.524,36.4208 677.108,35.1546 677.108,33.5063C 677.108,31.9465 677.559,30.6866 678.462,29.7267C 679.308,28.8298 680.343,28.3814 681.568,28.3814C 682.881,28.3814 683.885,28.8203 684.579,29.6982C 685.236,30.5192 685.564,31.634 685.564,33.0421L 685.564,33.8569 Z "/> <Path x:Name="Path_70" Width="5.95654" Height="10.174" Canvas.Left="686.592" Canvas.Top="28.3815" Stretch="Fill" Fill="#FF000000" Data="F1 M 692.549,35.723C 692.549,36.5187 692.252,37.1786 691.659,37.7029C 691.008,38.2712 690.121,38.5555 688.997,38.5555C 688.076,38.5555 687.274,38.3596 686.592,37.9681L 686.592,36.301C 687.35,36.9196 688.189,37.2292 689.111,37.2292C 690.342,37.2292 690.958,36.7776 690.958,35.8747C 690.958,35.4956 690.822,35.183 690.551,34.9368C 690.279,34.6905 689.749,34.3936 688.96,34.0462C 688.145,33.6927 687.568,33.3262 687.227,32.9474C 686.816,32.499 686.611,31.9149 686.611,31.1949C 686.611,30.3866 686.93,29.7156 687.568,29.1821C 688.205,28.6483 689.026,28.3815 690.03,28.3815C 690.8,28.3815 691.491,28.533 692.104,28.8361L 692.104,30.3992C 691.466,29.9382 690.734,29.7078 689.907,29.7078C 689.389,29.7078 688.975,29.8342 688.666,30.0866C 688.357,30.3394 688.202,30.6646 688.202,31.0623C 688.202,31.4918 688.332,31.8265 688.59,32.0665C 688.824,32.2875 689.31,32.5558 690.049,32.8716C 690.876,33.219 691.472,33.5757 691.838,33.9422C 692.312,34.4094 692.549,35.0031 692.549,35.723 Z "/> <Path x:Name="Path_73" Width="5.95654" Height="10.174" Canvas.Left="693.577" Canvas.Top="28.3815" Stretch="Fill" Fill="#FF000000" Data="F1 M 699.534,35.723C 699.534,36.5187 699.237,37.1786 698.643,37.7029C 697.993,38.2712 697.106,38.5555 695.982,38.5555C 695.061,38.5555 694.259,38.3596 693.577,37.9681L 693.577,36.301C 694.334,36.9196 695.174,37.2292 696.096,37.2292C 697.327,37.2292 697.943,36.7776 697.943,35.8747C 697.943,35.4956 697.807,35.183 697.535,34.9368C 697.264,34.6905 696.733,34.3936 695.945,34.0462C 695.13,33.6927 694.552,33.3262 694.211,32.9474C 693.801,32.499 693.596,31.9149 693.596,31.1949C 693.596,30.3866 693.915,29.7156 694.552,29.1821C 695.19,28.6483 696.011,28.3815 697.014,28.3815C 697.785,28.3815 698.476,28.533 699.089,28.8361L 699.089,30.3992C 698.451,29.9382 697.719,29.7078 696.891,29.7078C 696.374,29.7078 695.96,29.8342 695.651,30.0866C 695.341,30.3394 695.187,30.6646 695.187,31.0623C 695.187,31.4918 695.316,31.8265 695.575,32.0665C 695.809,32.2875 696.295,32.5558 697.034,32.8716C 697.861,33.219 698.457,33.5757 698.823,33.9422C 699.297,34.4094 699.534,35.0031 699.534,35.723 Z "/> <Path x:Name="Path_75" Width="2.03613" Height="14.181" Canvas.Left="701.007" Canvas.Top="24.1376" Stretch="Fill" Fill="#FF000000" Data="F1 M 702.778,38.3187L 701.224,38.3187L 701.224,28.6183L 702.778,28.6183M 703.043,25.1416C 703.043,25.4259 702.943,25.666 702.744,25.8616C 702.546,26.0575 702.304,26.1553 702.02,26.1553C 701.742,26.1553 701.504,26.0607 701.305,25.8713C 701.106,25.6816 701.007,25.4385 701.007,25.1416C 701.007,24.8576 701.106,24.6191 701.305,24.4265C 701.504,24.2338 701.742,24.1376 702.02,24.1376C 702.304,24.1376 702.546,24.2338 702.744,24.4265C 702.943,24.6191 703.043,24.8576 703.043,25.1416 Z "/> <Path x:Name="Path_78" Width="9.54565" Height="10.174" Canvas.Left="704.407" Canvas.Top="28.3815" Stretch="Fill" Fill="#FF000000" Data="F1 M 712.362,33.4874C 712.362,32.2433 712.081,31.296 711.519,30.6454C 710.976,30.0203 710.215,29.7078 709.237,29.7078C 708.271,29.7078 707.497,30.0236 706.917,30.6549C 706.304,31.3307 705.998,32.2875 705.998,33.5254C 705.998,34.6873 706.292,35.595 706.879,36.2487C 707.466,36.9024 708.252,37.2293 709.237,37.2293C 710.26,37.2293 711.039,36.8976 711.576,36.2344C 712.1,35.5905 712.362,34.6746 712.362,33.4874 Z M 713.953,33.4305C 713.953,34.9777 713.517,36.2188 712.646,37.1533C 711.775,38.088 710.601,38.5555 709.123,38.5555C 707.665,38.5555 706.509,38.088 705.657,37.1533C 704.824,36.2504 704.407,35.0599 704.407,33.5822C 704.407,31.896 704.881,30.5919 705.828,29.6698C 706.705,28.811 707.879,28.3815 709.35,28.3815C 710.796,28.3815 711.925,28.8299 712.736,29.7266C 713.547,30.6234 713.953,31.858 713.953,33.4305 Z "/> <Path x:Name="Path_79" Width="8.04956" Height="9.93713" Canvas.Left="715.776" Canvas.Top="28.3815" Stretch="Fill" Fill="#FF000000" Data="F1 M 723.826,38.3186L 722.273,38.3186L 722.273,32.7864C 722.273,30.7341 721.521,29.7077 720.019,29.7077C 719.242,29.7077 718.6,29.9982 718.092,30.5791C 717.584,31.1603 717.33,31.8959 717.33,32.7864L 717.33,38.3186L 715.776,38.3186L 715.776,28.6183L 717.33,28.6183L 717.33,30.2288L 717.367,30.2288C 718.094,28.9971 719.154,28.3815 720.549,28.3815C 721.616,28.3815 722.429,28.7288 722.988,29.4234C 723.547,30.1181 723.826,31.1035 723.826,32.3791L 723.826,38.3186 Z "/> <Path x:Name="Path_80" Width="7.71796" Height="13.5842" Canvas.Left="730.287" Canvas.Top="24.7344" Stretch="Fill" Fill="#FF000000" Data="F1 M 731.225,31.7065L 731.225,37.4661L 733.744,37.4661C 734.811,37.4661 735.627,37.2103 736.192,36.6987C 736.757,36.1872 737.039,35.4611 737.039,34.5198C 737.039,32.6442 735.767,31.7065 733.223,31.7065M 731.225,25.5964L 731.225,30.8539L 733.119,30.8539C 734.104,30.8539 734.893,30.6012 735.486,30.096C 736.08,29.5908 736.376,28.9056 736.376,28.0406C 736.376,26.4112 735.414,25.5964 733.488,25.5964M 730.287,38.3186L 730.287,24.7344L 733.857,24.7344C 734.924,24.7344 735.774,25.0217 736.405,25.5964C 737.036,26.1711 737.352,26.9321 737.352,27.8795C 737.352,28.669 737.142,29.3526 736.722,29.9302C 736.302,30.5082 735.717,30.917 734.966,31.1571L 734.966,31.1951C 735.906,31.2834 736.648,31.6198 737.191,32.2039C 737.734,32.7881 738.005,33.5315 738.005,34.4347C 738.005,35.5777 737.636,36.5108 736.897,37.2341C 736.159,37.957 735.171,38.3186 733.933,38.3186L 730.287,38.3186 Z "/> <Rectangle x:Name="Rectangle_45" Width="0.871155" Height="14.361" Canvas.Left="740.066" Canvas.Top="23.9576" Stretch="Fill" Fill="#FF000000"/> <Path x:Name="Path_81" Width="8.08722" Height="10.1737" Canvas.Left="742.76" Canvas.Top="28.3816" Stretch="Fill" Fill="#FF000000" Data="F1 M 749.939,32.7106C 749.901,31.593 749.632,30.7245 749.134,30.1055C 748.635,29.4866 747.947,29.1773 747.069,29.1773C 746.16,29.1773 745.407,29.4821 744.811,30.0912C 744.214,30.7007 743.846,31.5738 743.707,32.7106M 743.67,33.5063C 743.67,34.8387 743.977,35.881 744.593,36.6325C 745.208,37.384 746.053,37.7596 747.126,37.7596C 748.212,37.7596 749.272,37.3587 750.308,36.5565L 750.308,37.485C 749.304,38.1985 748.183,38.5553 746.946,38.5553C 745.696,38.5553 744.686,38.1069 743.916,37.2102C 743.145,36.3135 742.76,35.0473 742.76,33.4117C 742.76,31.9971 743.163,30.8051 743.968,29.8356C 744.773,28.8661 745.819,28.3816 747.107,28.3816C 748.313,28.3816 749.238,28.8046 749.882,29.651C 750.526,30.4971 750.848,31.6528 750.848,33.118L 750.848,33.5063L 743.67,33.5063 Z "/> <Path x:Name="Path_83" Width="7.46234" Height="9.93713" Canvas.Left="752.671" Canvas.Top="28.3815" Stretch="Fill" Fill="#FF000000" Data="F1 M 759.262,38.3186L 759.262,32.6728C 759.262,30.3423 758.423,29.1772 756.743,29.1772C 755.809,29.1772 755.042,29.5199 754.442,30.2051C 753.842,30.8903 753.543,31.738 753.543,32.7485L 753.543,38.3186L 752.671,38.3186L 752.671,28.6183L 753.543,28.6183L 753.543,30.3802L 753.58,30.3802C 754.287,29.0478 755.392,28.3815 756.895,28.3815C 757.943,28.3815 758.745,28.7304 759.3,29.4283C 759.856,30.1262 760.133,31.1223 760.133,32.4171L 760.133,38.3186L 759.262,38.3186 Z "/> <Path x:Name="Path_84" Width="8.45654" Height="14.5978" Canvas.Left="761.768" Canvas.Top="23.9575" Stretch="Fill" Fill="#FF000000" Data="F1 M 769.353,32.4169C 769.353,31.5137 769.067,30.7482 768.496,30.1199C 767.925,29.4915 767.156,29.1773 766.19,29.1773C 765.174,29.1773 764.334,29.5672 763.671,30.347C 763.008,31.1271 762.677,32.199 762.677,33.5632C 762.677,34.9022 762.975,35.9363 763.572,36.6657C 764.168,37.3951 764.937,37.7597 765.878,37.7597C 766.982,37.7597 767.838,37.4172 768.444,36.732C 769.05,36.0468 769.353,35.2115 769.353,34.2264M 769.353,38.3185L 769.353,36.5566L 769.315,36.5566C 768.999,37.1693 768.532,37.6554 767.914,38.0154C 767.295,38.3754 766.597,38.5554 765.821,38.5554C 764.628,38.5554 763.654,38.1197 762.899,37.2482C 762.145,36.3766 761.768,35.1735 761.768,33.6389C 761.768,32.0729 762.18,30.8051 763.003,29.8356C 763.827,28.8661 764.896,28.3814 766.209,28.3814C 767.661,28.3814 768.696,28.9782 769.315,30.1719L 769.353,30.1719L 769.353,23.9575L 770.224,23.9575L 770.224,38.3185L 769.353,38.3185 Z "/> <Path x:Name="Path_85" Width="7.8316" Height="13.8116" Canvas.Left="776.703" Canvas.Top="24.507" Stretch="Fill" Fill="#FF000000" Data="F1 M 776.703,38.3186L 776.703,37.3903L 780.406,33.4496C 781.725,32.0412 782.592,31.0024 783.005,30.3328C 783.419,29.6635 783.626,28.9182 783.626,28.0972C 783.626,27.2131 783.379,26.5263 782.887,26.0369C 782.395,25.5477 781.697,25.3027 780.794,25.3027C 779.594,25.3027 778.464,25.7731 777.404,26.7144L 777.404,25.6912C 778.439,24.9017 779.607,24.507 780.908,24.507C 782.069,24.507 782.964,24.8196 783.592,25.4449C 784.221,26.0701 784.535,26.9067 784.535,27.9552C 784.535,28.89 784.311,29.736 783.862,30.494C 783.414,31.2516 782.458,32.4106 780.993,33.9705L 777.669,37.4849L 777.669,37.5229L 784.459,37.5229L 784.459,38.3186L 776.703,38.3186 Z "/> <Path x:Name="Path_86" Width="0.915833" Height="1.32086" Canvas.Left="771.11" Canvas.Top="23.9507" Stretch="Fill" Fill="#FF000000" Data="F1 M 772.026,24.0908L 771.645,24.0908L 771.645,25.2715L 771.491,25.2715L 771.491,24.0908L 771.11,24.0908L 771.11,23.9507L 772.026,23.9507L 772.026,24.0908 Z "/> <Path x:Name="Path_87" Width="1.34686" Height="1.32062" Canvas.Left="772.233" Canvas.Top="23.9509" Stretch="Fill" Fill="#FF000000" Data="F1 M 773.58,25.2715L 773.425,25.2715L 773.425,24.3845C 773.425,24.3144 773.429,24.2292 773.438,24.1287L 773.434,24.1287C 773.42,24.1877 773.406,24.2303 773.395,24.2564L 772.945,25.2715L 772.869,25.2715L 772.418,24.264C 772.405,24.2354 772.392,24.1904 772.378,24.1287L 772.374,24.1287C 772.38,24.1813 772.382,24.2672 772.382,24.3866L 772.382,25.2715L 772.233,25.2715L 772.233,23.9509L 772.437,23.9509L 772.842,24.8719C 772.873,24.9411 772.893,24.994 772.902,25.03L 772.909,25.03C 772.935,24.9576 772.957,24.9039 772.972,24.8681L 773.386,23.9509L 773.58,23.9509L 773.58,25.2715 Z "/> </Canvas> <Path Opacity="0.5" x:Name="line" Width="313" Height="1.032" Stretch="Fill" Stroke="#FF000000" Canvas.Left="319" Canvas.Top="38.053" Data="M19,52 L784.01046,52"> <Path.OpacityMask> <LinearGradientBrush EndPoint="1.003,-1" StartPoint="0.003,0"> <GradientStop Color="#00000000" Offset="0.01"/> <GradientStop Color="#00FFFFFF" Offset="0.995"/> <GradientStop Color="#FF1B1B1B" Offset="0.207"/> <GradientStop Color="#FFE0E0E0" Offset="0.793"/> </LinearGradientBrush> </Path.OpacityMask> </Path> </Canvas></Canvas>
05-13-2009 12:41 PM |
Looks like Silverlight 1.0 output. You'll need to convert that to Silverlight 2 to utilize the Silverlight Toolkit for DockPanel.
05-13-2009 1:42 PM |
How can I do it??? Please help me solve this.
coolshri
17 points
14 Posts
06-20-2009 4:11 AM |
For Silverlight 2.0 check this thread which give similar solution for your problem that worked fantastically and very simple ...
http://silverlight.net/forums/t/98200.aspx
Hope this may help you...