1

我想从 XML 解析 url 属性,并从以下提要链接在列表框中的图像控件(由 URL 引用的那个)中显示图像:http: //feeds.bbci.co.uk/news/rss.xml

我的代码是:

var ComingNewsFromUri = from rss in XElement.Parse(e.Result).Descendants("item")
                        select new  NewsItems
                        {
                            Title = rss.Element("title").Value,
                            PubDate = rss.Element("pubDate").Value,
                            Description = rss.Element("description").Value
                        };
4

1 回答 1

0

对于 RSS,我建议使用 SyndicationFeed 和 SyndicationItem....自动为您出色地完成所有解析和转换为对象。

http://ryanhayes.net/blog/how-to-build-an-rss-feed-reader-in-windows-phone-7part-i-retrieving-parsing-and-displaying-post-titles/

我自己在商店里有一个使用 SyndicationFeed 的 RSS 提要应用程序,它非常可靠和方便。

这是 Microsoft 的另一个示例

http://code.msdn.microsoft.com/wpapps/RSS-Reader-Sample-1702775f

于 2013-08-14T05:30:01.800 回答