Click here to Skip to main content
16,012,153 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:

Hello,

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/7545_BannerWap_20121025_124343.png
http://latam.zed.com/MCP/Estilos/352/7406_BannerWap_2012103_92241.png

First image load properly, But second number image not loading(this img is animated type)
Only problem with below image not load.
"http://latam.zed.com/MCP/Estilos/352/7406_BannerWap_2012103_92241.png

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

C#
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.

Br,
Siddheshwar
Posted

1 solution

AFAIK, WP7 not support animated images (even png).

Regards.
 
Share this answer
 
Comments
Siddheshwar Duchal from Pune 25-Feb-13 1:27am    
OK.

In future, if you get more info (WP7 not support animated images (even png)) then please update me.
Thanks you !

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900