BindingOperations.EnableCollectionSynchronization () equivalent for .net 4.0

Moved some operating systems to the background thread and quickly ran into an exceptional user interface call where the user interface control is bound to an ObservableCollection

.net 4.5 solves this problem with the new BindingOperations.EnableCollectionSynchronization ()

however, cannot switch to 4.5, but hoping that something for the .net 4.0 world will make the ObservableCollection thread safe?

+2
source share

Source: https://habr.com/ru/post/915296/


All Articles