I am planning to introduce threading in my WPF application. I know that any operation on ObservableCollection (like add and remove) needs to be done on a UI thread.
But can I change the value of a property of a bound object present inside the ObservableCollection / bound to the UI on a background thread?