--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/FingersDance.Control.Player/UserControlPlayer.xaml Fri Jul 31 00:45:42 2009 +0200
@@ -0,0 +1,25 @@
+<UserControl
+ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
+ xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
+ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
+ mc:Ignorable="d"
+ x:Class="FingersDance.Control.Player.UserControlPlayer"
+ x:Name="UserControl"
+ Width="Auto" Height="Auto" xmlns:Custom="http://schemas.microsoft.com/surface/2008">
+
+ <StackPanel x:Name="LayoutRoot" Width="Auto" Height="Auto" Background="{x:Null}">
+ <Grid Width="Auto" Height="200" MaxWidth="500">
+ <Grid.Background>
+ <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
+ <GradientStop Color="#FFFFF9F9" Offset="0"/>
+ <GradientStop Color="#FFFFFFFF" Offset="1"/>
+ <GradientStop Color="#FF464646" Offset="0.08"/>
+ <GradientStop Color="#FF262626" Offset="0.902"/>
+ </LinearGradientBrush>
+ </Grid.Background>
+ <MediaElement x:Name="MediaElementVideo" Width="Auto" Height="Auto" Source="Lake.wmv"/>
+ </Grid>
+ <Custom:SurfaceButton FontSize="12" FontWeight="Bold" x:Name="ButtonPlayPause" Content="Play/Pause" Width="Auto" Height="36.096" ContactDown="ButtonPlayPause_ContactDown" Click="ButtonPlayPause_Click"/>
+ </StackPanel>
+</UserControl>
\ No newline at end of file