src/FingersDance.Control.Menu/UserControlMenu.xaml
changeset 56 0662bd606c28
parent 54 c724ac229181
child 62 cbe5b01679a3
equal deleted inserted replaced
55:1ec0ef228158 56:0662bd606c28
     6 	mc:Ignorable="d"
     6 	mc:Ignorable="d"
     7 	x:Class="FingersDance.Control.Menu.UserControlMenu"
     7 	x:Class="FingersDance.Control.Menu.UserControlMenu"
     8 	x:Name="UserControl"
     8 	x:Name="UserControl"
     9 	Width="245" Height="Auto" xmlns:Custom="http://schemas.microsoft.com/surface/2008">
     9 	Width="245" Height="Auto" xmlns:Custom="http://schemas.microsoft.com/surface/2008">
    10 
    10 
    11 	<StackPanel x:Name="LayoutRoot" Width="Auto" Height="Auto">
    11     <StackPanel x:Name="LayoutRoot" Width="Auto" Height="Auto">
    12 		<StackPanel.Background>
    12         <StackPanel.Background>
    13 			<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
    13             <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
    14 				<GradientStop Color="#FF000000" Offset="0"/>
    14                 <GradientStop Color="#FF000000" Offset="0"/>
    15 				<GradientStop Color="#FF444444" Offset="0.991"/>
    15                 <GradientStop Color="#FF444444" Offset="0.991"/>
    16 				<GradientStop Color="#FF757575" Offset="0.906"/>
    16                 <GradientStop Color="#FF757575" Offset="0.906"/>
    17 				<GradientStop Color="#FF414141" Offset="0.772"/>
    17                 <GradientStop Color="#FF414141" Offset="0.772"/>
    18 			</LinearGradientBrush>
    18             </LinearGradientBrush>
    19 		</StackPanel.Background>
    19         </StackPanel.Background>
    20 		<Custom:SurfaceButton FontSize="18" FontWeight="Normal" Foreground="#FFAEAEAE" HorizontalAlignment="Stretch" x:Name="ButtonAnnotation" Width="Auto" Height="45" Content="Annotation" ContactDown="ButtonAnnotation_ContactDown" Click="ButtonAnnotation_Click"/>
    20 
    21 		<StackPanel RenderTransformOrigin="0.5,0.5" Visibility="Collapsed" HorizontalAlignment="Right" x:Name="PanelAnnotation" Width="208" Height="Auto">
    21 
    22 			<StackPanel.RenderTransform>
    22 
    23 				<TransformGroup>
    23 
    24 					<ScaleTransform ScaleX="1" ScaleY="1"/>
    24 
    25 					<SkewTransform AngleX="0" AngleY="0"/>
    25     </StackPanel>
    26 					<RotateTransform Angle="0"/>
       
    27 					<TranslateTransform X="0" Y="0"/>
       
    28 				</TransformGroup>
       
    29 			</StackPanel.RenderTransform>
       
    30 			<Custom:SurfaceButton FontSize="14" FontWeight="Normal" Foreground="#FFAEAEAE" Width="Auto" Height="25" Content="Cinématographique" Visibility="Visible" Background="#72FFFFFF" x:Name="ButtonChildCine" ContactDown="ButtonChildCine_ContactDown" Click="ButtonChildCine_Click"/>
       
    31 			<StackPanel x:Name="PanelChildCine" Width="Auto" Height="Auto" Visibility="Collapsed" HorizontalAlignment="Right" Background="{x:Null}">
       
    32 				<Custom:SurfaceButton Height="25" Content="Mouvement de Caméra" x:Name="ButtonChild1MouvCam" Click="ButtonChild1MouvCam_Click" ContactDown="ButtonChild1MouvCam_ContactDown"/>
       
    33 				<StackPanel x:Name="PanelChild1MouvCam" Height="Auto" Visibility="Collapsed" HorizontalAlignment="Right">
       
    34 					<Custom:SurfaceButton Content="MouvCam1" x:Name="buttonMouvCam1"/>
       
    35 					<Custom:SurfaceButton Content="MouvCam2" x:Name="bouttonMouvCam2"/>
       
    36 				</StackPanel>
       
    37 				<Custom:SurfaceButton Height="25" Content="Axe de Caméra" x:Name="buttonChild1AxeCam" Click="buttonChild1AxeCam_Click" ContactDown="buttonChild1AxeCam_ContactDown"/>
       
    38 				<StackPanel x:Name="PanelChild1AxeCam" Height="Auto" Visibility="Collapsed" HorizontalAlignment="Right">
       
    39 					<Custom:SurfaceButton Content="Axe camèra1" x:Name="buttonAxeCam1"/>
       
    40 					<Custom:SurfaceButton Content="Axe camèra2" x:Name="buttonAxeCam2"/>
       
    41 					<Custom:SurfaceButton Content="Axe camèra3" x:Name="buttonAxeCam3"/>
       
    42 					<Custom:SurfaceButton Content="Axe camèra4" x:Name="buttonAxeCam4"/>
       
    43 				</StackPanel>
       
    44 			</StackPanel>
       
    45 			<Custom:SurfaceButton FontSize="14" FontWeight="Normal" Foreground="#FFAEAEAE" Width="Auto" Height="26" Content="Chorégraphique" Background="#72FFFFFF" Visibility="Visible" x:Name="ButtonChildChore" Click="ButtonChildChore_Click" ContactDown="ButtonChildChore_ContactDown"/>
       
    46 			<StackPanel x:Name="PanelChildChore" Width="Auto" Height="Auto" Visibility="Collapsed" HorizontalAlignment="Right" Background="#FFA6A6A6">
       
    47 				<Custom:SurfaceButton Content="ChildChore1" x:Name="button1"/>
       
    48 				<Custom:SurfaceButton Content="ChildChore2" x:Name="button2"/>
       
    49 			</StackPanel>
       
    50 		</StackPanel>
       
    51 		<Custom:SurfaceButton FontSize="18" FontWeight="Normal" Foreground="#FFAEAEAE" x:Name="ButtonRecherche" Width="Auto" Height="45" Content="Recherche" ContactDown="ButtonRecherche_ContactDown" Click="ButtonRecherche_Click"/>
       
    52 		<StackPanel Visibility="Collapsed" HorizontalAlignment="Right" x:Name="PanelRecherche" Width="262" Height="45"/>
       
    53 	</StackPanel>
       
    54 </UserControl>
    26 </UserControl>