I'm need to animate a bunch of DrawingVisual objects that I hold in a VisualCollection but something like the following doesn't seem to work:
((DrawingVisual)_children[_currentPointIndex]).SetValue(Canvas.LeftProperty, p.X);
If I need to animate the DrawingVisual's location, how do I properly do that Thanks!

Animate a DrawingVisual
shahapu
odin88
Craig Doan
I have created a simple sample here:
http://www.valil.com/TestVisual.zip
mjohnson3091
DrawingVisual dv = new DrawingVisual();
...
dv.Transform = new TranslateTransform(x,y);
Aravindtg