if i have something like that:
<StackPanel Orientation="Horizontal">
<TextBlock Text="FIRST" Margin="5" VerticalAlignment="Center" />
<TextBlock Text="SECOND" Margin="5" VerticalAlignment="Center" />
<TextBlock Text="THIRD" Margin="5" VerticalAlignment="Center" />
<TextBlock Text="FOURTH" Margin="5" VerticalAlignment="Center" />
<TextBlock Text="FIFTH" Margin="5" VerticalAlignment="Center" />
</StackPanel>
Could you please show me how can I create an animation where TextBlocks will roll out from the right side of the screen, each after another?
Could you show me a similar example?
I know that I probably gonna need to use canvas instead of StackPanel, but how arrange them properly then I don't know...