WPF Databinding thread safety?

Posted by Petoj on Stack Overflow See other posts from Stack Overflow or by Petoj
Published on 2010-03-31T13:36:14Z Indexed on 2010/03/31 13:43 UTC
Read the original article Hit count: 773

Filed under:
|
|

Well lets say i have an object that i databind to, it implements INotifyPropertyChanged to tell the GUI when a value has changed...

if i trigger this from a different thread than the GUI thread how would wpf behave?

and will it make sure that it gets the value of the property from memory and not the cpu cache?

more or less im asking if wpf does lock() on the object containing the property...

© Stack Overflow or respective owner

Related posts about wpf

Related posts about multithreading