So I’m creating an app that requires for a TextBlock to have a marquee effect if its width is longer than the bounds of the page in Landscape mode. I managed to get it to marquee just fine using TranslateTransform animations, but it seems that my TextBlock’s text is being cut out.
Is there a way to make it so that this behavior doesn’t happen or is there a workaround?

You need to wrap the
TextBlockin aCanvasand then apply the animation. Also make sure that you set theTextWrappingproperty toNoWrapand set the width toAutoso that it spans only one line.