1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
| <UserControl
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Height="73" Width="188">
<UserControl.Resources>
<Storyboard x:Key="rotate">
<DoubleAnimationUsingKeyFrames BeginTime="00:00:00" Storyboard.TargetName="Robot" Storyboard.TargetProperty="(UIElement.RenderTransform).(TransformGroup.Children)[2].(RotateTransform.Angle)">
<SplineDoubleKeyFrame KeyTime="00:00:00" Value="0"/>
<SplineDoubleKeyFrame KeyTime="00:00:01" Value="90"/>
</DoubleAnimationUsingKeyFrames>
</Storyboard>
</UserControl.Resources>
<UserControl.Triggers>
</UserControl.Triggers>
<Grid Name="Robot" RenderTransformOrigin="0.144,0.682" Background="#FF000000">
<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 HorizontalAlignment="Left" Margin="15,0,0,8" Width="77" Fill="#FFFFD700" Stroke="#FF000000" StrokeThickness="0"/>
<Ellipse HorizontalAlignment="Left" Margin="0,0,0,8" Width="30" Fill="#FFFFD700" Stroke="#FF000000" StrokeThickness="0"/>
<Ellipse HorizontalAlignment="Left" Margin="9,0,0,0" VerticalAlignment="Bottom" Width="45" Height="33" Fill="#FFFFD700" Stroke="#FF000000" StrokeThickness="0"/>
<Rectangle Margin="48,24,4.5,32" Fill="#FFFFD700" Stroke="#FF000000" StrokeThickness="1"/>
<Rectangle HorizontalAlignment="Right" Margin="0,17,4.5,0" VerticalAlignment="Top" Width="26" Height="8" Fill="#FFFFD700" Stroke="#FF000000" StrokeThickness="1"/>
<Rectangle HorizontalAlignment="Right" Margin="0,0,4.5,28" VerticalAlignment="Bottom" Width="18" Height="5" Fill="#FFFFD700" Stroke="#FF000000" StrokeThickness="1"/>
<Rectangle HorizontalAlignment="Left" Margin="48,24,0,32" Width="15.5" Fill="#FF000000" Stroke="#FF000000" StrokeThickness="1"/>
<Rectangle HorizontalAlignment="Left" Margin="81.5,0,0,8" VerticalAlignment="Bottom" Width="10.5" Height="24" Fill="#FF000000" Stroke="#FF000000" StrokeThickness="1"/>
<Rectangle HorizontalAlignment="Right" Margin="0,27.5,5.5,34.5" Width="12.5" Fill="#FF000000" Stroke="#FF000000" StrokeThickness="1"/>
<Rectangle HorizontalAlignment="Right" Margin="0,27.5,0,34.5" Width="6.5" Fill="#FFFFD700" Stroke="#FF000000" StrokeThickness="1"/>
<Rectangle HorizontalAlignment="Right" Margin="0,25,88,33" Width="4.5" Fill="#FF000000" Stroke="#FF000000" StrokeThickness="1"/>
<Rectangle HorizontalAlignment="Right" Margin="0,25,31.5,33" Width="4.5" Fill="#FF000000" Stroke="#FF000000" StrokeThickness="1"/>
<Rectangle Margin="91,28,83.5,0" VerticalAlignment="Top" Height="2" Fill="#FF000000" Stroke="#FF000000" StrokeThickness="1"/>
<Rectangle Margin="91,33.5,83.5,0" VerticalAlignment="Top" Height="2" Fill="#FF000000" Stroke="#FF000000" StrokeThickness="1"/>
<Rectangle HorizontalAlignment="Right" Margin="0,25,70,33" Width="4.5" Fill="#FF000000" Stroke="#FF000000" StrokeThickness="1"/>
<Rectangle Margin="0,28,65.5,0" VerticalAlignment="Top" Height="2" Fill="#FF000000" Stroke="#FF000000" StrokeThickness="1" HorizontalAlignment="Right" Width="14"/>
<Rectangle Margin="0,33.5,65.5,0" VerticalAlignment="Top" Height="2" Fill="#FF000000" Stroke="#FF000000" StrokeThickness="1" HorizontalAlignment="Right" Width="14"/>
<Path Margin="91.5,7,76,0" VerticalAlignment="Top" Height="17.5" Fill="#FFFFD700" Stretch="Fill" Stroke="#FF000000" StrokeThickness="0" Data="M165.54545,114.52778 L165.54545,98.000001 145.5,98 145.5,101.5 162.5,101.5 162.20455,114.52778 z"/>
<Ellipse HorizontalAlignment="Left" Margin="22,0,0,18" VerticalAlignment="Bottom" Width="10" Height="10" Fill="#FFE41919" Stroke="#FF000000"/>
<Rectangle HorizontalAlignment="Left" Margin="48,24.5,0,32.5" Width="5" Fill="#FFE41919" Stroke="#FF000000" StrokeThickness="1"/>
<Rectangle HorizontalAlignment="Left" Margin="81.5,0,0,8" VerticalAlignment="Bottom" Width="10.5" Height="4" Fill="#FFE41919" Stroke="#FF000000" StrokeThickness="1"/>
<Rectangle HorizontalAlignment="Right" Margin="0,27.5,17,34.5" Width="4" Fill="#FFE41919" Stroke="#FF000000" StrokeThickness="1"/>
</Grid>
</UserControl> |
Partager