0

I get the result from Web service as XML format. I have read it and hold it List<> then bind to ListBox control (Windows Phone 7.1)

I get image path in URL as below

http://latam.zed.com/MCP/Estilos/352/7406_BannerWap_2012103_92241.png

Above image not loading(this img is animated type)

My Code as below: I try many ways but Not success.

var TopVentasNew = from c in TopVentas.Descendants("content_item")

            select new clsContent
            {
              id = c.Element("id").Value,
              image_url = c.Element("image_url").Value

            };                      
ListBox1.ItemsSource = TopVentasNew.ToList<clsContent>();

Plz help me, how can I load Animated type of png image in WP7.

Thanks in Advance.

Nazik
  • 8,696
  • 27
  • 77
  • 123

1 Answers1

0

I can't find any source at the moment but I think Windows Phone and Silverlight don't support Animated PNGs.

What you can do is look at this library. I know it adds support for animated GIF on Windows Phone. More info here : Display GIF in a WP7 application with Silverlight

Community
  • 1
  • 1
Olivier Payen
  • 15,198
  • 7
  • 41
  • 70