wpf-storyboard

WPF Multiple DataTriggers targeting the same property with Animation

I have created a UserControl which is basically an Ellipse with a DependencyProperty called ValueH. The Fill property of the Ellipse is based on ValueH. So for example if ValueH=1 Fill=Red, ValueH=2 Fill=Blue, ValueH=3 Fill=Green and so on. I have also declared storyboards so that when the value of ValueH changes, a ColorAnimation is run...

Multiple Storyboards with alternating Visibility of animated visuals

Let's say I have a custom control that I want to animate on loading and closing. I have overridden its ControlTemplate and provided Storyboards for show/hide animations. Loading is handled with EventTrigger on Framework.Loaded and closing on a custom event. This all works well. Now I have a series of images that I want to display consec...