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.