Applying DoubleAnimation

A DoubleAnimation object enables you to animate the specified transform property; it also enables you to revert the motion, specify the duration, and specify whether the animation needs to be repeated unlimitedly. The first example animates an image, applying the animation to a SkewTransform and to a ScaleTransform contextually. The code in Listing 30.4 shows how to accomplish this.

LISTING 30.4 Applying a DoubleAnimation to an Image

        <Image Grid.Row="0" Grid.Column="0" Name="Image1"Source="/StylesBrushesTemplatesAnimations;component/Images/Avatar.jpg">            <Image.RenderTransform>                <TransformGroup>                    <SkewTransform x:Name="SkewImage"/>                    <ScaleTransform ...

Get Visual Basic 2015 Unleashed now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.