2009-12-01 Jeffrey Stedfast <fejj@novell.com>
[moon.git] / src / fullscreen.xaml
blobcb68b443c248649f2b3d43581a86aaf14174e913
1 <?xml version="1.0" encoding="Windows-1252"?>
2 <Grid
3 xmlns="http://schemas.microsoft.com/client/2007"
4 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5 x:Name="FullScreenMessage"
6 Visibility="Visible"
7 Opacity=".9"
9 <Grid.Triggers>
10 <EventTrigger RoutedEvent="Grid.Loaded">
11 <BeginStoryboard>
12 <Storyboard x:Name="FadeOut">
13 <DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="FullScreenMessage" Storyboard.TargetProperty="(UIElement.Opacity)">
14 <SplineDoubleKeyFrame KeyTime="00:00:04.6000000" Value=".3"/>
15 <SplineDoubleKeyFrame KeyTime="00:00:05" Value="0"/>
16 </DoubleAnimationUsingKeyFrames>
17 </Storyboard>
18 </BeginStoryboard>
19 </EventTrigger>
20 </Grid.Triggers>
21 <Border HorizontalAlignment="Center" VerticalAlignment="Center" BorderBrush="White" BorderThickness="1" CornerRadius="8" Padding="10" MaxWidth="458" MinWidth="100">
22 <Border.Background>
23 <LinearGradientBrush EndPoint="0,1" StartPoint="0,0">
24 <GradientStop Color="#FF242323" Offset="0"/>
25 <GradientStop Color="#FF515151" Offset="1"/>
26 </LinearGradientBrush>
27 </Border.Background>
28 <Grid>
29 <Grid.RowDefinitions>
30 <RowDefinition />
31 <RowDefinition />
32 </Grid.RowDefinitions>
33 <TextBlock Grid.Row="0" TextAlignment="Center" TextWrapping="Wrap" FontWeight="Normal" Foreground="#FFFFFFFF" FontSize="14" Text="Press &quot;Esc&quot; to exit full-screen mode." x:Name="message"/>
34 <TextBlock Grid.Row="1" TextAlignment="Center" Text="&lt;url: file://&gt;" TextWrapping="Wrap" x:Name="url" Foreground="#FFC8C4C4" FontSize="13" FontStretch="Normal"/>
35 </Grid>
36 </Border>
37 </Grid>