src/FingersDance.Control.Menu/UserControlMenu.xaml
changeset 2 06de3a61998f
child 3 4f1ea403073d
equal deleted inserted replaced
1:9bd58e02b6a9 2:06de3a61998f
       
     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.Menu.UserControlMenu"
       
     8 	x:Name="UserControl"
       
     9 	Width="245" Height="Auto" xmlns:Custom="http://schemas.microsoft.com/surface/2008">
       
    10 
       
    11 	<StackPanel x:Name="LayoutRoot" Width="Auto" Height="Auto">
       
    12 		<StackPanel.Background>
       
    13 			<LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
       
    14 				<GradientStop Color="#FF000000" Offset="0"/>
       
    15 				<GradientStop Color="#FF444444" Offset="0.991"/>
       
    16 				<GradientStop Color="#FF757575" Offset="0.906"/>
       
    17 				<GradientStop Color="#FF414141" Offset="0.772"/>
       
    18 			</LinearGradientBrush>
       
    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"/>
       
    21 		<StackPanel RenderTransformOrigin="0.5,0.5" Visibility="Collapsed" HorizontalAlignment="Right" x:Name="PanelAnnotation" Width="208" Height="Auto">
       
    22 			<StackPanel.RenderTransform>
       
    23 				<TransformGroup>
       
    24 					<ScaleTransform ScaleX="1" ScaleY="1"/>
       
    25 					<SkewTransform AngleX="0" AngleY="0"/>
       
    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"/>
       
    31 			<Custom:SurfaceButton FontSize="14" FontWeight="Normal" Foreground="#FFAEAEAE" Width="Auto" Height="26" Content="Chorégraphique" Background="#72FFFFFF" Visibility="Visible" x:Name="ButtonChildChore"/>
       
    32 		</StackPanel>
       
    33 		<Custom:SurfaceButton FontSize="18" FontWeight="Normal" Foreground="#FFAEAEAE" x:Name="ButtonRecherche" Width="Auto" Height="45" Content="Recherche" ContactDown="ButtonRecherche_ContactDown" Click="ButtonRecherche_Click"/>
       
    34 		<StackPanel Visibility="Collapsed" HorizontalAlignment="Right" x:Name="PanelRecherche" Width="262" Height="45"/>
       
    35 	</StackPanel>
       
    36 </UserControl>