Ghost1372

everything can be handy

AnimatedTextBlock

A TextBlock control which animates the text with customizable effects.

Property

Name
Text
TextEffect
TextAlignment
TextDirection
TextTrimming
TextWrapping

Events

Name
RedrawStateChanged

Effects

Name
TextDefaultEffect
TextBlurEffect
TextElasticEffect
TextMotionBlurEffect
TextPivotEffect
TextZoomEffect

Example

1
2
3
4
5
<dev:AnimatedTextBlock Text="DevWinUI">
<dev:TextBlockFX.TextEffect>
<dev:TextDefaultEffect/>
</dev:TextBlockFX.TextEffect>
</dev:AnimatedTextBlock>

You can Write Your Own Effects. Define a new effect class and implement the ITextEffect interface.
Draw the text by using Win2D API.

AnimatedTextBlock

Demo

you can run demo and see this feature.

0%