我正在使用来自 flickr 的公共提要在列表框中显示图像的缩略图。我需要获取所选图像的 url,以便我可以在列表框下方加载完整图像。怎么做?提要网址在这里
XElement XmlTweet = XElement.Parse(e.Result);
XNamespace ns = "http://search.yahoo.com/mrss/"; // flilckr
listBox1.ItemsSource = from tweet in XmlTweet.Descendants("item")
select new FlickrData
{
ImageSource = tweet.Element(ns + "thumbnail").Attribute("url").Value,
Message = tweet.Element("description").Value,
UserName = tweet.Element("title").Value,
PubDate = DateTime.Parse(tweet.Element("pubDate").Value)
};