So, I’ve spent a good amount of time using ContinuousLinq to bind collections to WPF using LINQ in my client app. Now I get to testing and find out that ComboBoxes do not support collection change notifications cross-thread.
Does anyone know of a Bindable LINQ solution that has an option to force change event to be raised on a given UIThread?
Since ContinuousLinq is open source, you could modify it to add this behavior…
Here’s an example of how to do it with an
ObservableCollection. You could probably use the same principle for ContinuousLinq.