Animates the horizontal center of the RotateTransform applied to the TextEffect : TextBlock Animation « Windows Presentation Foundation « C# / CSharp Tutorial






<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.Triggers>
          <EventTrigger RoutedEvent="TextBlock.Loaded">
            <EventTrigger.Actions>
            <BeginStoryboard>
              <Storyboard>
                <ParallelTimeline RepeatBehavior="Forever">

                <DoubleAnimation
                  From="30"
                  To="370"
                  Duration="00:00:13"
                  RepeatBehavior="Forever"
                  AutoReverse="True"
                  Storyboard.TargetName="TextEffectRotateTransform"
                  Storyboard.TargetProperty="CenterX" />
                </ParallelTimeline>
              </Storyboard>
            </BeginStoryboard>
            </EventTrigger.Actions>
          </EventTrigger>
        </TextBlock.Triggers>
      </TextBlock>

    </Border>
  </StackPanel>
</Page>
WPF Animates The Horizontal Center Of The Rotate Transform Applied To The Text Effect








24.9.TextBlock Animation
24.9.1.TextBlock Opacity AnimationTextBlock Opacity Animation
24.9.2.Animates the text block's colorAnimates the text block's color
24.9.3.Animates the text block's opacity(fading text)Animates the text block's opacity(fading text)
24.9.4.Animates the text block's widthAnimates the text block's width
24.9.5.TextEffect to animateTextEffect to animate
24.9.6.Animates the horizontal center of the RotateTransform applied to the TextEffectAnimates the horizontal center of the RotateTransform applied to the TextEffect
24.9.7.Animates the position of the TextEffectAnimates the position of the TextEffect