src/FingersDance.Control.Pivot/UserControlPivot.xaml
changeset 46 f1a26ca4177e
parent 35 ed77793b767a
child 48 50f075139497
equal deleted inserted replaced
45:f003ae353cd7 46:f1a26ca4177e
     3 	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
     3 	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
     4 	xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
     4 	xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
     5 	xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
     5 	xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
     6 	mc:Ignorable="d"
     6 	mc:Ignorable="d"
     7 	x:Class="FingersDance.Control.Pivot.UserControlPivot"
     7 	x:Class="FingersDance.Control.Pivot.UserControlPivot"
     8 	x:Name="UserControl" Width="52" Height="52">
     8 	x:Name="UserControl" Width="52" Height="52" xmlns:Custom="http://schemas.microsoft.com/surface/2008">
     9 
     9 	<UserControl.Resources>
    10 	<Ellipse Fill="#FF080808" Stroke="#FF000000"/>
    10 		<ResourceDictionary>
       
    11 			<ResourceDictionary.MergedDictionaries>
       
    12 				<ResourceDictionary Source="FingersDance.Control.Pivot.Ressource.xaml"/>
       
    13 			</ResourceDictionary.MergedDictionaries>
       
    14 		</ResourceDictionary>
       
    15 	</UserControl.Resources>
       
    16 	<Grid>
       
    17 		<Grid.RowDefinitions>
       
    18 			<RowDefinition Height="0.501*"/>
       
    19 			<RowDefinition Height="0.499*"/>
       
    20 		</Grid.RowDefinitions>
       
    21 		<Grid.ColumnDefinitions>
       
    22 			<ColumnDefinition Width="0.506*"/>
       
    23 			<ColumnDefinition Width="0.494*"/>
       
    24 		</Grid.ColumnDefinitions>
       
    25 		<Ellipse Fill="#FFFFFFFF" Stroke="#FF000000" Grid.ColumnSpan="2" Grid.RowSpan="2"/>
       
    26 		<Custom:SurfaceButton BorderThickness="0,0,0,0" HorizontalAlignment="Center" x:Name="SurfaceButtonPlayer1" VerticalAlignment="Center" Content="" Background="{DynamicResource Color_8_#230FD2_xaml}"/>
       
    27 		<Custom:SurfaceButton Content="" HorizontalAlignment="Center" x:Name="SurfaceButtonPlayer2" VerticalAlignment="Center" Grid.Column="1" RenderTransformOrigin="0.5,0.5" Background="{DynamicResource Color_4_#FF0000_xaml}">
       
    28 			<Custom:SurfaceButton.RenderTransform>
       
    29 				<TransformGroup>
       
    30 					<ScaleTransform ScaleX="-1" ScaleY="1"/>
       
    31 					<SkewTransform AngleX="0" AngleY="0"/>
       
    32 					<RotateTransform Angle="0"/>
       
    33 					<TranslateTransform X="0" Y="0"/>
       
    34 				</TransformGroup>
       
    35 			</Custom:SurfaceButton.RenderTransform>
       
    36 		</Custom:SurfaceButton>
       
    37 		<Custom:SurfaceButton Content="" HorizontalAlignment="Center" x:Name="SurfaceButtonPlayer3" VerticalAlignment="Center" Grid.Row="1" RenderTransformOrigin="0.5,0.5" Background="{DynamicResource Color_12_#00C800_xaml}" >
       
    38 			<Custom:SurfaceButton.RenderTransform>
       
    39 				<TransformGroup>
       
    40 					<ScaleTransform ScaleX="1" ScaleY="-1"/>
       
    41 					<SkewTransform AngleX="0" AngleY="0"/>
       
    42 					<RotateTransform Angle="0"/>
       
    43 					<TranslateTransform X="0" Y="0"/>
       
    44 				</TransformGroup>
       
    45 			</Custom:SurfaceButton.RenderTransform>
       
    46 		</Custom:SurfaceButton>
       
    47 		<Custom:SurfaceButton Content=""  Grid.Row="1" Grid.Column="1" HorizontalAlignment="Center" VerticalAlignment="Center" x:Name="SurfaceButtonPlayer4" RenderTransformOrigin="0.5,0.5" Background="{DynamicResource Color_2_#FFC800_xaml}">
       
    48 			<Custom:SurfaceButton.RenderTransform>
       
    49 				<TransformGroup>
       
    50 					<ScaleTransform ScaleX="-1" ScaleY="-1"/>
       
    51 					<SkewTransform AngleX="0" AngleY="0"/>
       
    52 					<RotateTransform Angle="0"/>
       
    53 					<TranslateTransform X="0" Y="0"/>
       
    54 				</TransformGroup>
       
    55 			</Custom:SurfaceButton.RenderTransform>
       
    56 		</Custom:SurfaceButton>
       
    57 	</Grid>
    11 </UserControl>
    58 </UserControl>