Hi, Just a doubt.I have three images in my WPF application.Im going to give blink effect for that three images.So i gave this code.
<Storyboard x:Key ="AlarmBlink">
<DoubleAnimation
Storyboard.TargetName="Img1"
Storyboard.TargetProperty="Opacity"
From="1" To="0" Duration="0:0:0.1"
AutoReverse="True" RepeatBehavior="Forever" />
</Storyboard>
This one is for FirstImage(Img1).So i have to give for other two images.Can i give multiple taget name in previus coding. Otherwise i have to copy and paste the samecoding and changing targetname. Is there any way to give in single coding?