TextEffect to animate
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" WindowTitle="TextEffect Sample" Background="SteelBlue"> <StackPanel Margin="40"> <Border Name="TextBorder" HorizontalAlignment="Center" VerticalAlignment="Center"> <TextBlock FontSize="60" Margin="50" Foreground="White"> Windows Vista <TextBlock.TextEffects> <TextEffect PositionCount="1" x:Name="MyTextEffect"> <TextEffect.Transform> <RotateTransform x:Name="TextEffectRotateTransform" Angle="0" CenterX="10" CenterY="10" /> </TextEffect.Transform> </TextEffect> </TextBlock.TextEffects> </TextBlock> </Border> </StackPanel> </Page>