我发现了一个很棒的 RSS 阅读器,它只能获取图像。
地点:http ://www.kunal-chowdhury.com/2011/08/fetching-picasa-images-through-rss-in.html
我想不通的是如何使阅读器仅按所需类别过滤和显示提要中的图像。我不打算将该阅读器用于 Picasa。
我使用的 RSS 提要:http ://www.zimo.co/feed/
我创建了一个 ObservableCollection
ObservableCollection<FeedItem> categories;
public ObservableCollection<FeedItem> Categories
{
get { return categories; }
set
{
categories = value;
OnPropertyChanged("Categories");
}
}
并更新代码如下
private void Feed(object sender, DownloadStringCompletedEventArgs e)
{
try
{
if (!e.Cancelled)
{
var xmlElement = XElement.Parse(e.Result);
FeedItems.Clear();
//added code for pulling all categories for every item in the feed
foreach (var katItem in from value
in xmlElement.Elements("channel").Elements("item").Elements("category")
select value.Value
into xCategory
where xCategory != null
select new FeedItem { Category = xCategory })
{
Categories.Add(katItem);
}
foreach (var feedItem in from value
in xmlElement.Elements("channel").Elements("item")
select value.Element("enclosure")
into xEnclosure
where xEnclosure != null
select xEnclosure.Attribute("url")
into xUrl
where xUrl != null
select new FeedItem { Link = xUrl.Value }
)
{
FeedItems.Add(feedItem);
}
}
}
catch
{ }
}
这样我就有了一个 Collection (Categories),在其中我从提要中的每个项目中获取所有类别。我想知道的事情。是否可以合并这两个集合,然后按所需类别过滤新集合,以便我只得到所需的图像?