0

I am building a rss feed reader.I created a starter app using Visual studio.On it's main page I added a link to a new pivot page.All the rss thing happens in my pivot page.Now in my rss feed listbox,I initially set some list items using the following code:

public PivotPage1()
{
    InitializeComponent();
    getMeTheNews();
    addToCollection("Android is going up","TechCrunch");
    lstBox.DataContext = theCollection;
}

private void addToCollection(string p1, string p2)
{
    theCollection.Add(new NewsArticle(p1,p2));
}

Here are the other two functions where rss is fetched from the server and parsed,But when I want to add processed entries to the ObservableCollection in getTheResponse() method,it results in the invalid cross thread access error.Any ideas?

Code:

private void getMeTheNews()
{
    String url = "http://rss.cnn.com/rss/edition.rss";
    HttpWebRequest webRequest = (HttpWebRequest)HttpWebRequest.Create(url);
    webRequest.BeginGetResponse(getTheResponse, webRequest);
}

private void getTheResponse(IAsyncResult result)
{
    HttpWebRequest request = result.AsyncState as HttpWebRequest;
    if (request != null)
    {
        try
        {
            WebResponse response = request.EndGetResponse(result);
            XDocument doc = XDocument.Load(response.GetResponseStream());
            IEnumerable<XElement> articles = doc.Descendants("item");
            foreach (var article in articles) {
                System.Diagnostics.Debug.WriteLine(article);
                try
                {
                    System.Diagnostics.Debug.WriteLine(article.Element("title").Value);
                    addToCollection(article.Element("title").Value,"CNN");
                }
                catch (NullReferenceException e) {
                    System.Diagnostics.Debug.WriteLine(e.StackTrace);
                }
            }

        }
        catch(WebException e) {
            System.Diagnostics.Debug.WriteLine(e.StackTrace.ToString());
        }
    }
    else 
    { 
    }
}
4

3 に答える 3

0

メソッド OnCollectionChanged の ovverride を使用して、 ObservableCollectionから始まるDispatcherを使用できます。

public class MyObservableCollectionOverrideCollChangOfObjects<T> : ObservableCollection<T>
    {
        ...

#region CollectionChanged
public override event NotifyCollectionChangedEventHandler CollectionChanged;
protected override void OnCollectionChanged(NotifyCollectionChangedEventArgs e)
{
    var eh = CollectionChanged;
    if (eh != null)
    {
        Dispatcher dispatcher = (from NotifyCollectionChangedEventHandler nh in eh.GetInvocationList()
                                    let dpo = nh.Target as DispatcherObject
                                    where dpo != null
                                    select dpo.Dispatcher).FirstOrDefault();

        if (dispatcher != null && dispatcher.CheckAccess() == false)
        {
            dispatcher.Invoke(DispatcherPriority.DataBind, (Action)(() => OnCollectionChanged(e)));
        }
        else
        {
            foreach (NotifyCollectionChangedEventHandler nh in eh.GetInvocationList())
                nh.Invoke(this, e);
        }
    }
}
#endregion
..
}
于 2014-01-22T07:32:11.827 に答える
0

クロススレッド コレクションの同期

ListBox バインディングをObservableCollectionに配置すると、データが変更されたときに ListBox が更新されます。これは、INotifyCollectionChanged が実装されているためです。dell'ObservableCollection の欠点は、データを作成したスレッドだけがデータを変更できることです。

SynchronizedCollectionはマルチスレッドの問題はありませんが、 INotifyCollectionChanged が実装されていないため ListBox を更新しません。動作しません。

結論

-モノスレッドで自動更新されるリストが必要な場合は、ObservableCollectionを使用します

-自動更新ではなくマルチスレッドのリストが必要な場合は、SynchronizedCollectionを使用します

-両方が必要な場合は、Framework 4.5、BindingOperations.EnableCollectionSynchronization および ObservableCollection () を次のように使用します。

/ / Creates the lock object somewhere
private static object _lock = new object () ;
...
/ / Enable the cross acces to this collection elsewhere
BindingOperations.EnableCollectionSynchronization ( _persons , _lock )

完全なサンプル http://10rem.net/blog/2012/01/20/wpf-45-cross-thread-collection-synchronization-redux

于 2014-01-15T10:29:24.393 に答える