我想从 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
};