in plugin/:
[moon.git] / src / fullscreen / fullscreen.xaml
blobf9573f7df54ab4b398035c5f2c76155e480bbd36
1 <?xml version="1.0" encoding="Windows-1252"?>
2 <Canvas
3 xmlns="http://schemas.microsoft.com/client/2007"
4 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5 Width="500" Height="68"
6 x:Name="FullScreenMessage"
7 Visibility="Visible"
8 Opacity="1"
10 <Canvas.Triggers>
11 <EventTrigger RoutedEvent="Canvas.Loaded">
12 <BeginStoryboard>
13 <Storyboard x:Name="FadeOut">
14 <DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="FullScreenMessage" Storyboard.TargetProperty="(UIElement.Opacity)">
15 <SplineDoubleKeyFrame KeyTime="00:00:04.6000000" Value="1"/>
16 <SplineDoubleKeyFrame KeyTime="00:00:05" Value="0"/>
17 </DoubleAnimationUsingKeyFrames>
18 </Storyboard>
19 </BeginStoryboard>
20 </EventTrigger>
21 </Canvas.Triggers>
22 <Canvas.RenderTransform>
23 <TranslateTransform X="0" Y="0"/>
24 </Canvas.RenderTransform>
25 <Rectangle Width="500" Height="68" Stroke="#FF000000" StrokeThickness="0" RadiusX="8" RadiusY="8">
26 <Rectangle.Fill>
27 <LinearGradientBrush EndPoint="0,1" StartPoint="0,0">
28 <GradientStop Color="#FF242323" Offset="0"/>
29 <GradientStop Color="#FF515151" Offset="1"/>
30 </LinearGradientBrush>
31 </Rectangle.Fill>
32 </Rectangle>
33 <TextBlock Width="458" Height="27" Canvas.Left="124" Canvas.Top="14" TextWrapping="Wrap" FontWeight="Normal" Foreground="#FFFFFFFF" FontSize="14" Text="Press &quot;Esc&quot; to exit full-screen mode." x:Name="message"/>
34 <TextBlock Width="458" Height="20" Canvas.Left="193" Canvas.Top="34" Text="&lt;url: file://&gt;" TextWrapping="Wrap" x:Name="url" Foreground="#FFC8C4C4" FontSize="13" FontStretch="Normal"/>
35 </Canvas>