Please Help me, how to move the image control to specific x y Position by using any animation class or translateTransform class. i have tried this kind of code given below, but problem is x position is not taken from the canvs(as i have set the background )to fix the image. so please tell me the solution for this problem.
thank you.
bg_Canvas.Children[it].RenderTransform = new TranslateTransform();
TranslateTransform trans = bg_Canvas.Children[it].RenderTransform as TranslateTransform;
DoubleAnimation animation = new DoubleAnimation();
animation.To = 10;
Storyboard.SetTarget(animation, trans);
Storyboard.SetTargetProperty(animation, new PropertyPath(TranslateTransform.XProperty));
Storyboard story = new Storyboard();
story.Children.Add(animation);
story.Begin();