TextEffect to animate : 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.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>
WPF Text Effect To Animate








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