0

我们目前正在创建一个 Windows 应用商店应用程序,它从 RSS 提要中获取信息并将此信息输入到 ObservableCollection 中。我们遇到的问题是在获取信息时,应用程序 UI 变得无响应。

为了解决这个问题,我考虑创建一个新线程并在其中调用该方法。不过,经过一些研究,我们意识到这在 Windows 应用商店应用程序中不再可能。我们怎样才能解决这个问题?

收集信息的方法如下。

public void getFeed()
{
    setupImages();
    string[] feedUrls = new string[] {
        "http://www.igadgetos.co.uk/blog/category/gadget-news/feed/",
        "http://www.igadgetos.co.uk/blog/category/gadget-reviews/feed/",
        "http://www.igadgetos.co.uk/blog/category/videos/feed/",
        "http://www.igadgetos.co.uk/blog/category/gaming/feed/",
        "http://www.igadgetos.co.uk/blog/category/jailbreak-2/feed/",
        "http://www.igadgetos.co.uk/blog/category/kickstarter/feed/",
        "http://www.igadgetos.co.uk/blog/category/cars-2/feed/",
        "http://www.igadgetos.co.uk/blog/category/software/feed/",
        "http://www.igadgetos.co.uk/blog/category/updates/feed/"
    };

    {
        try
        {
            XNamespace dc = "http://purl.org/dc/elements/1.1/";
            XNamespace content = "http://purl.org/rss/1.0/modules/content/";

            foreach (var feedUrl in feedUrls)
            {
                var doc = XDocument.Load(feedUrl);
                var feed = doc.Descendants("item").Select(c => new ArticleItem() //Creates a copy of the ArticleItem Class.
                {
                    Title = c.Element("title").Value,
                    //There are another 4 of these.
                    Post = stripTags(c.Element(content + "encoded").Value)                        }
                ).OrderByDescending(c => c.PubDate);
                this.moveItems = feed.ToList();

                foreach (var item in moveItems)
                {
                    item.ID = feedItems.Count;
                    feedItems.Add(item);
                }
            }
            lastUpdated = DateTime.Now;
        }
        catch
        {
            MessageDialog popup = new MessageDialog("An error has occured downloading the feed, please try again later.");
            popup.Commands.Add(new UICommand("Okay"));
            popup.Title = "ERROR";

            popup.ShowAsync();
        }
    }
}

当我们获得此信息时,我们如何能够使应用程序不冻结,因为在 Windows 应用商店应用程序中无法进行线程处理。

例如 - 我们计划使用;

Thread newThread = new Thread(getFeed);
newThread.Start
4

1 回答 1

2

对于在 UI 线程上发生的操作,您需要使用有据可查的异步模式。Paul-Jan 在评论中给出的链接是您需要开始的地方。 http://msdn.microsoft.com/en-us/library/windows/apps/hh994635.aspx

于 2013-06-07T13:17:01.617 回答