Animating WPF element in XAML using attached property?

Did some digging around on Property Path Syntax, and the solution was actually simple. Needed to add parentheses:

Storyboard.TargetProperty="(Canvas.Top)"

The animation is not as smooth as i would like.. but at least it works now.

Leave a Comment