I’m looking for a dependence property that can tell me when an animation has ended. I’m displaying a flash (background change) when a value changes by setting a property “IsDirty” to let the View know that it should animate the background but then I need to reset the value for the next change.
I hope you get what I mean.
EDIT: To display the flash I’m using a Storyboard.
You could handle the
Completedevent for theStoryBoardand set any notifications at that point in time. I realise you wanted to avoid code behind but I think that it will be required in this instance because there is no such dependency property on theStoryBoardfor “IsComplete” with which you could data bind to.