i managed to find out how to make a wpf animation - transition between two colors.

Its called ColorAnimation and works well.

        ColorAnimation animation = new ColorAnimation
                                   {
                                       From = Colors.DarkGreen,
                                       To = Colors.Transparent,
                                       Duration = new Duration(TimeSpan.FromSeconds(1.5)),
                                       AutoReverse = false
                                   };
    animation.Completed += new EventHandler(animation_Completed);
    SolidColorBrush brush = new SolidColorBrush(Colors.Transparent);
    animation.AccelerationRatio = 0.5;

    Background = brush;
    brush.BeginAnimation(SolidColorBrush.ColorProperty, animation);

I am using this to animate background of my usercontrol. My controls background is solidcolorbrush. Recently i changed to LinearGradientBrush. Now i can use my animation no more.

I need animation from brush to brush, not color to color. And best option is Abstract brush type, which includes solidcolor, lineargradient etc, so i can animate for example from solidcolorbrush to lineargradient brush. Is that even possible? Thank you.

link|improve this question

feedback

1 Answer

You just need to use the color animation on the gradient stops of the gradient brush. Here is an example that animates a rectangle gradient using a storyboard.

    <Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    x:Class="GradientBrushAnimation.MainWindow"
    x:Name="Window"
    Title="MainWindow"
    Width="640" Height="480">
    <Window.Resources>
        <Storyboard x:Key="Storyboard1">
            <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[0].(GradientStop.Color)" Storyboard.TargetName="rectangle">
                <EasingColorKeyFrame KeyTime="0:0:2" Value="Red"/>
            </ColorAnimationUsingKeyFrames>
            <ColorAnimationUsingKeyFrames Storyboard.TargetProperty="(Shape.Fill).(GradientBrush.GradientStops)[1].(GradientStop.Color)" Storyboard.TargetName="rectangle">
                <EasingColorKeyFrame KeyTime="0:0:2" Value="#FF71FF00"/>
            </ColorAnimationUsingKeyFrames>
        </Storyboard>
    </Window.Resources>
    <Window.Triggers>
        <EventTrigger RoutedEvent="FrameworkElement.Loaded">
            <BeginStoryboard Storyboard="{StaticResource Storyboard1}"/>
        </EventTrigger>
    </Window.Triggers>

    <Grid x:Name="LayoutRoot">
        <Rectangle x:Name="rectangle" Margin="78,102,292,144" Stroke="Black">
            <Rectangle.Fill>
                <LinearGradientBrush EndPoint="0.5,1" StartPoint="0.5,0">
                    <GradientStop Color="Black" Offset="0"/>
                    <GradientStop Color="White" Offset="1"/>
                </LinearGradientBrush>
            </Rectangle.Fill>
        </Rectangle>
    </Grid>
</Window>
link|improve this answer
That works well if i know what type of brush to expect. But in my case, there can be solid color, linear gradient or radialgradient depending on suer settings. Is there general way of brush to brush animation (independent of brush type)? – Vojtech Ruzicka Nov 12 '11 at 11:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.