I have a story board with double animation,
<Storyboard x:Name="Storyboard1">
<DoubleAnimation From="0" To="200" Duration="0:0:2" Storyboard.TargetProperty="(UIElement.RenderTransform).(CompositeTransform.TranslateX)">
</DoubleAnimation>
</Storyboard>
and I just adding TargetNameProperty dynamically,
private void set_animation_for_images(string target_name)
{
Storyboard1.Stop();
Storyboard1.SetValue(Storyboard.TargetNameProperty, target_name);
Storyboard1.Begin();
}
Here is it possible to call this set_animation_for_images() method continuously for different image at same starting time?