WpfAnimatedGif
WpfAnimatedGif copied to clipboard
Delay animation for any gif?
I added the gif using this code:
<Image gif:ImageBehavior.AnimatedSource="../Images/Background/movi1.gif"/>
How can I control the delay time to start the gif ? any property in xaml can do this?
Hi @ahmedtalaat327,
There's no property to delay the animation start. The only way to do this right now is to set AutoStart to false and control the animation manually.
Sorry Hi, @thomaslevesque
I did tried that but it's just by calling the tag Image gif
it puts the whole UI in waiting mode.? preventing any other animation from loading specially storyboard animations with small duration.
@thomaslevesque I think AutoStart
prop Just for hiding the element not stooping the process of decoding. and the prcoessitself is async
method maybe.
@ahmedtalaat327 sorry, I don't understand what you're saying.
just by calling the tag
Image gif
What does it mean?
think AutoStart prop Just for hiding the element not stooping the process of decoding. and the prcoessitself is async method maybe.
Setting AutoStart to false just causes the animation not to start automatically, so that you can control it manually. It doesn't change when the decoding is done.