I set up a nice ColorAnimation. When applying AutoReverse = true to it, it even goes from one color to another.
Now I want it to change the color it animates to randomly after every completed runthrough. How can I achieve this?
btw. I'm attaching my Animation to a storyboard:
storyboard.RepeatBehavior = RepeatBehavior.Forever;
storyboard.Children.Add(SpotLightAnimation);
storyboard.Begin(this);