src/FingersDance.Control.Player/UserControlPlayer.xaml
author sarias
Mon, 17 Aug 2009 22:04:09 +0200
changeset 35 ed77793b767a
parent 34 9e222810f5b5
child 45 f003ae353cd7
permissions -rw-r--r--
Control Pivot, Debut Control Screen SyncSource UserPanel
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3
4f1ea403073d Projet Menu avec profondeur complete.
sarias
parents:
diff changeset
     1
<UserControl
4f1ea403073d Projet Menu avec profondeur complete.
sarias
parents:
diff changeset
     2
	xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4f1ea403073d Projet Menu avec profondeur complete.
sarias
parents:
diff changeset
     3
	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
4f1ea403073d Projet Menu avec profondeur complete.
sarias
parents:
diff changeset
     4
	xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
4f1ea403073d Projet Menu avec profondeur complete.
sarias
parents:
diff changeset
     5
	xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
4f1ea403073d Projet Menu avec profondeur complete.
sarias
parents:
diff changeset
     6
	mc:Ignorable="d"
4f1ea403073d Projet Menu avec profondeur complete.
sarias
parents:
diff changeset
     7
	x:Class="FingersDance.Control.Player.UserControlPlayer"
4f1ea403073d Projet Menu avec profondeur complete.
sarias
parents:
diff changeset
     8
	x:Name="UserControl"
35
ed77793b767a Control Pivot,
sarias
parents: 34
diff changeset
     9
	Width="450" Height="334" xmlns:Custom="http://schemas.microsoft.com/surface/2008">
4
7b7f95dc9027 skin 1 du player
riley
parents: 3
diff changeset
    10
	<UserControl.Resources>
7b7f95dc9027 skin 1 du player
riley
parents: 3
diff changeset
    11
		<Storyboard x:Key="OnClick1"/>
7b7f95dc9027 skin 1 du player
riley
parents: 3
diff changeset
    12
	</UserControl.Resources>
7b7f95dc9027 skin 1 du player
riley
parents: 3
diff changeset
    13
	<UserControl.Triggers>
7b7f95dc9027 skin 1 du player
riley
parents: 3
diff changeset
    14
	</UserControl.Triggers>
35
ed77793b767a Control Pivot,
sarias
parents: 34
diff changeset
    15
        <Grid x:Name="LayoutRoot" Width="Auto" Height="Auto" Background="{x:Null}">
ed77793b767a Control Pivot,
sarias
parents: 34
diff changeset
    16
		<Grid Width="Auto" MaxWidth="500" Background="#FF000000">
ed77793b767a Control Pivot,
sarias
parents: 34
diff changeset
    17
			<MediaElement x:Name="MediaElementVideo" MediaOpened="MediaElementVideo_MediaOpened" />
ed77793b767a Control Pivot,
sarias
parents: 34
diff changeset
    18
			<Custom:SurfaceButton x:Name="Rewind_area" Content="Play/Pause" ContactDown="ButtonRewind_ContactDown" Click="ButtonRewind_Click" Foreground="{x:Null}" Background="#FFF7F0F0" BorderBrush="{x:Null}" Opacity="0" Width="72" HorizontalAlignment="Left"/>
ed77793b767a Control Pivot,
sarias
parents: 34
diff changeset
    19
			<Custom:SurfaceButton x:Name="Fast_Forward_area" Content="Play/Pause" ContactDown="ButtonFastForward_ContactDown" Click="ButtonFastForward_Click" Foreground="{x:Null}" Background="#FFF7F0F0" BorderBrush="{x:Null}" Opacity="0" Width="72" HorizontalAlignment="Right"/>
ed77793b767a Control Pivot,
sarias
parents: 34
diff changeset
    20
			<Custom:SurfaceButton x:Name="Play_Pause_area" ContactDown="ButtonPlayPause_ContactDown" Click="ButtonPlayPause_Click" Foreground="{x:Null}" Margin="76,0,76,0" Background="#FFF7F0F0" BorderBrush="{x:Null}" Opacity="0"/>
ed77793b767a Control Pivot,
sarias
parents: 34
diff changeset
    21
		</Grid>
ed77793b767a Control Pivot,
sarias
parents: 34
diff changeset
    22
	</Grid>
34
9e222810f5b5 User Control Player
sarias
parents: 10
diff changeset
    23
 </UserControl>