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.
|
|
|
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/ |
|||
|
|
|
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/. |
|||
|
|
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. |
|||
|
|
|
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 |
|||
|
|