src/FingersDance/MainSurfaceWindow.xaml
author PAMPHILE Jonathan <pamphile@efrei.fr>
Wed, 23 Sep 2009 16:56:08 +0200
changeset 85 3e8532a77c2e
parent 77 e95e916eb018
child 89 f9a931434910
permissions -rw-r--r--
Merge Screen-ListVideo

<s:SurfaceWindow
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:s="http://schemas.microsoft.com/surface/2008"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" mc:Ignorable="d"
    xmlns:FingersDance_Control_UserPanel="clr-namespace:FingersDance.Control.UserPanel;assembly=FingersDance.Control.UserPanel"
    xmlns:FingersDance_Control_Pivot="clr-namespace:FingersDance.Control.Pivot;assembly=FingersDance.Control.Pivot"
    
    
    x:Class="FingersDance.SurfaceWindow1"
    Title="FingersDance"
    Width="1024" Height="768" x:Name="mainSurfaceWindow" 
    Background="{x:Null}"
    xmlns:FingersDance_Control_SessionInput1="clr-namespace:FingersDance.Control.SessionInput;assembly=FingersDance.Control.SaisieSeance"
    
    
    >
  <s:SurfaceWindow.Resources>
    <ImageBrush x:Key="WindowBackground" Stretch="None" Opacity="0.6" ImageSource="pack://application:,,,/Resources/WindowBackground.jpg"/>
  </s:SurfaceWindow.Resources>

  <Grid x:Name="MainGrid" Width="1024" Height="768" >
  	<Grid.Background>
  		<LinearGradientBrush EndPoint="0.505,0.985" StartPoint="0.505,-0.015">
  			<GradientStop Color="#FF000000" Offset="0"/>
  			<GradientStop Color="#FF2A2A2A" Offset="0.544"/>
  			<GradientStop Color="#FF000000" Offset="1"/>
  		</LinearGradientBrush>
  	</Grid.Background>

  	<Grid HorizontalAlignment="Left" x:Name="Grid1" VerticalAlignment="Top" Width="100" Height="100" Background="{x:Null}" RenderTransformOrigin="0.5,0.5">
  		<Grid.RenderTransform>
  			<TransformGroup>
  				<ScaleTransform ScaleX="-1" ScaleY="-1"/>
  				<SkewTransform AngleX="0" AngleY="0"/>
  				<RotateTransform Angle="0"/>
  				<TranslateTransform X="0" Y="0"/>
  			</TransformGroup>
  		</Grid.RenderTransform>
  		
  		<Rectangle Fill="{x:Null}" Stroke="#FFFFFFFF"/>
  	</Grid>
  	<Grid HorizontalAlignment="Right" Margin="0,0,0,0" x:Name="Grid2" VerticalAlignment="Top" Width="100" Height="100" Background="{x:Null}" RenderTransformOrigin="0.5,0.5">
  		<Grid.RenderTransform>
  			<TransformGroup>
  				<ScaleTransform ScaleX="-1" ScaleY="-1"/>
  				<SkewTransform AngleX="0" AngleY="0"/>
  				<RotateTransform Angle="0"/>
  				<TranslateTransform X="0" Y="0"/>
  			</TransformGroup>
  		</Grid.RenderTransform>
  		
  		<Rectangle Fill="{x:Null}" Stroke="#FFFFFFFF"/>
  	</Grid>
  	<Grid RenderTransformOrigin="0.5,0.5" HorizontalAlignment="Left" Margin="0,0,0,0" x:Name="Grid3" VerticalAlignment="Bottom" Width="100" Height="100" Background="{x:Null}">
  		<Grid.RenderTransform>
  			<TransformGroup>
  				<ScaleTransform ScaleX="1" ScaleY="1"/>
  				<SkewTransform AngleX="0" AngleY="0"/>
  				<RotateTransform Angle="0"/>
  				<TranslateTransform X="0" Y="0"/>
  			</TransformGroup>
  		</Grid.RenderTransform>
  		<Rectangle Fill="{x:Null}" Stroke="#FFFFFFFF"/>
  		
  	</Grid>
  	<Grid HorizontalAlignment="Right" Margin="0,0,0,0" x:Name="Grid4" VerticalAlignment="Bottom" Width="100" Height="100" Background="{x:Null}">
  		
  		<Rectangle Fill="{x:Null}" Stroke="#FFFFFFFF"/>
  	</Grid>
  	<s:ScatterView x:Name="scaterview"  ContactChanged="scaterview_ContactChanged">
  		<s:ScatterViewItem   Center="512,384" CanMove="True" CanRotate="False" CanScale="False" Background="{x:Null}" x:Name="ScatterViewItemPivot" ContactChanged="ScatterViewItemPivot_ContactChanged" >
  			<FingersDance_Control_Pivot:UserControlPivot x:Name="UserControlPivot" EH_SurfaceButtonPlayer1_ContactDown="UserControlPivot_EH_SurfaceButtonPlayer1_ContactDown" EH_SurfaceButtonPlayer2_ContactDown="UserControlPivot_EH_SurfaceButtonPlayer2_ContactDown" EH_SurfaceButtonPlayer3_ContactDown="UserControlPivot_EH_SurfaceButtonPlayer3_ContactDown" EH_SurfaceButtonPlayer4_ContactDown="UserControlPivot_EH_SurfaceButtonPlayer4_ContactDown"/>
  		</s:ScatterViewItem>
  	</s:ScatterView>

  </Grid>
</s:SurfaceWindow>