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"
|
4
|
9 |
Width="329.873" Height="224.096" xmlns:Custom="http://schemas.microsoft.com/surface/2008">
|
|
10 |
<UserControl.Resources>
|
|
11 |
<Storyboard x:Key="OnClick1"/>
|
|
12 |
</UserControl.Resources>
|
|
13 |
<UserControl.Triggers>
|
|
14 |
</UserControl.Triggers>
|
3
|
15 |
|
4
|
16 |
<StackPanel x:Name="LayoutRoot" Width="331.873" Height="227.096" Background="{x:Null}">
|
|
17 |
<Grid Width="327.873" Height="191" MaxWidth="500" Background="{DynamicResource [Skin_1_Player__xaml}">
|
|
18 |
<Grid Margin="12.366,13.976,12.819,12.508" Background="{x:Null}">
|
|
19 |
<MediaElement x:Name="MediaElementVideo" Source="Lake.wmv"/>
|
|
20 |
</Grid>
|
3
|
21 |
</Grid>
|
4
|
22 |
<Custom:SurfaceButton FontSize="12" FontWeight="Bold" x:Name="ButtonPlayPause" Content="Play/Pause" Width="37.873" Height="36.096" ContactDown="ButtonPlayPause_ContactDown" Click="ButtonPlayPause_Click" Background="{DynamicResource [Skin_1]_Play_button_xaml}" Foreground="{x:Null}"/>
|
3
|
23 |
</StackPanel>
|
|
24 |
</UserControl> |