Created
April 7, 2014 16:22
-
-
Save thomaslevesque/10023516 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Collections.ObjectModel; | |
using System.Threading; | |
namespace WpfApplication1 | |
{ | |
public class AsyncObservableCollection<T> : ObservableCollection<T> | |
{ | |
private readonly SynchronizationContext _synchronizationContext = SynchronizationContext.Current; | |
public AsyncObservableCollection() | |
{ | |
} | |
public AsyncObservableCollection(IEnumerable<T> list) | |
: base(list) | |
{ | |
} | |
private void ExecuteOnSyncContext(Action action) | |
{ | |
if (SynchronizationContext.Current == _synchronizationContext) | |
{ | |
action(); | |
} | |
else | |
{ | |
_synchronizationContext.Send(_ => action(), null); | |
} | |
} | |
protected override void InsertItem(int index, T item) | |
{ | |
ExecuteOnSyncContext(() => base.InsertItem(index, item)); | |
} | |
protected override void RemoveItem(int index) | |
{ | |
ExecuteOnSyncContext(() => base.RemoveItem(index)); | |
} | |
protected override void SetItem(int index, T item) | |
{ | |
ExecuteOnSyncContext(() => base.SetItem(index, item)); | |
} | |
protected override void MoveItem(int oldIndex, int newIndex) | |
{ | |
ExecuteOnSyncContext(() => base.MoveItem(oldIndex, newIndex)); | |
} | |
protected override void ClearItems() | |
{ | |
ExecuteOnSyncContext(() => base.ClearItems()); | |
} | |
} | |
} |
@StllUnknwn no, it doesn't. It just ensures modifications are done on the UI thread.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I don't think it prevents
CollectionModified
errors whenforeach
ing on the collection. Does it?