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.