How to enable multi-threaded data binding in WPF?
WPF does propagate the property changed notification across thread boundaries, but collection changed notification doesn’t get propagated , the reason is that if you marshal or propagate the collection changed notification across thread boundaries, no matter whether you marshal the collection changed notification either synchronously (Dispatcher.Invoke()) or asynchronously (Dispatcher.BeginInvoke()), there will be an interval between the time you marshal the call to the dispatcher thread, and the time the dispatcher thread is available to process the call. During this interval, the dispatcher thread would probably access the already changed source collection (note that at this interval, there would be some work items posted or sent before your work item, and those work items would possibly change the data bound source collection) and since the collection has been changed, the dispatcher thread will get the wrong value, and possibly crash eventually.