3
|
1 |
<UserControl
|
|
2 |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
3 |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
4 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
5 |
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
6 |
mc:Ignorable="d"
|
|
7 |
x:Class="FingersDance.Control.Player.UserControlPlayer"
|
|
8 |
x:Name="UserControl"
|
|
9 |
Width="Auto" Height="Auto" xmlns:Custom="http://schemas.microsoft.com/surface/2008">
|
|
10 |
|
|
11 |
<StackPanel x:Name="LayoutRoot" Width="Auto" Height="Auto" Background="{x:Null}">
|
|
12 |
<Grid Width="Auto" Height="200" MaxWidth="500">
|
|
13 |
<Grid.Background>
|
|
14 |
<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
|
|
15 |
<GradientStop Color="#FFFFF9F9" Offset="0"/>
|
|
16 |
<GradientStop Color="#FFFFFFFF" Offset="1"/>
|
|
17 |
<GradientStop Color="#FF464646" Offset="0.08"/>
|
|
18 |
<GradientStop Color="#FF262626" Offset="0.902"/>
|
|
19 |
</LinearGradientBrush>
|
|
20 |
</Grid.Background>
|
|
21 |
<MediaElement x:Name="MediaElementVideo" Width="Auto" Height="Auto" Source="Lake.wmv"/>
|
|
22 |
</Grid>
|
|
23 |
<Custom:SurfaceButton FontSize="12" FontWeight="Bold" x:Name="ButtonPlayPause" Content="Play/Pause" Width="Auto" Height="36.096" ContactDown="ButtonPlayPause_ContactDown" Click="ButtonPlayPause_Click"/>
|
|
24 |
</StackPanel>
|
|
25 |
</UserControl> |