Como: Fazer com que um Elemento gire sobre seu centro
Este exemplo mostra como fazer um elemento girar usando uma RotateTransform e uma DoubleAnimation.
O exemplo a seguir aplica a RotateTransform à propriedade RenderTransform do elemento. O exemplo usa uma DoubleAnimation para animar o Angle da RotateTransform. Para fazer o elemento girar sobre seu centro, o exemplo define a propriedade RenderTransformOrigin do elemento como o ponto (0,5, 0,5).
Exemplo
<!-- RotateAboutCenterExample.xaml
This example shows how to make an element spin
about its center. -->
<Page
xmlns="https://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="https://schemas.microsoft.com/winfx/2006/xaml"
x:Class="Microsoft.Samples.Animation.RotateAboutCenterExample"
WindowTitle="Rotate About Center Example">
<StackPanel Margin="50">
<Button
RenderTransformOrigin="0.5,0.5"
HorizontalAlignment="Left">
Hello,World
<Button.RenderTransform>
<RotateTransform x:Name="MyAnimatedTransform" Angle="0" />
</Button.RenderTransform>
<Button.Triggers>
<EventTrigger RoutedEvent="Button.Click">
<BeginStoryboard>
<Storyboard>
<DoubleAnimation
Storyboard.TargetName="MyAnimatedTransform"
Storyboard.TargetProperty="(RotateTransform.Angle)"
From="0.0" To="360" Duration="0:0:1" />
</Storyboard>
</BeginStoryboard>
</EventTrigger>
</Button.Triggers>
</Button>
</StackPanel>
</Page>
Para o exemplo completo, que inclui mais exemplos de transformação, consulte Exemplo de transformações 2-D.