Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a control to show an animated gif in a Windows Store (Metro) app in Windows 8? I am using C# and XAML with databinding.

share|improve this question

4 Answers

up vote 1 down vote accepted

The Image control doesn't support animated GIFs. You will need to extract the frames and animate them on your own timer.

You should take a look at this link which might help you regarding your question:

http://advertboy.wordpress.com/2012/05/08/animated-gifs-in-xamlc/

share|improve this answer

If I am right then Silverlight doesn't support GIF and Metro Apps are based on Silverlight platform. Hence dont contain support for GIF images natively. You can however use 3rd party controls like http://www.componentone.com/SuperProducts/ImageSilverlight/.

share|improve this answer
I am trying this method, but I find it overkill to use direct-x to display a gif. If it works, I'll mark this as answer. – John Koerner Oct 7 '12 at 21:28

This is probably overkill, but you could try using a WebView to display the GIF. The WebView control introduces its own set of headaches, however, so unless you're willing to deal with said headaches, I would recommend avoiding it unless you absolutely have to use it.

share|improve this answer

Just for a note: you can use the BitmapDecoder class to read the GIF frames, create a storyboard an animated them.

I've got an example of an Windows 8 user control on my blog: http://www.henrikbrinch.dk/Blog/2013/02/21/Windows-8---GIF-animations--the-RIGHT-way

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.