I have a WPF ListView that is bound to a collection (List). It is currently updated from the current thread which works ok.
List
I want to move the
You can make the collection update from Dispatcher.Invoke to avoid those threading problems:
void ThreadProc() { window.Dispatcher.Invoke(() => { //UpdateList }); }