ListBox does not update when source changes #5838
-
Hi,
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
If I understood your problem, you need to implement INotifyPropertyChanged on Friend class. In WPF it works most likely because of its "hidden aspect" with implicit property changed notifications: |
Beta Was this translation helpful? Give feedback.
If I understood your problem, you need to implement INotifyPropertyChanged on Friend class.
In WPF it works most likely because of its "hidden aspect" with implicit property changed notifications:
https://social.msdn.microsoft.com/Forums/vstudio/en-US/9365bb6a-b411-4967-9a03-ae2a810fb215/data-binding-without-inotifypropertychanged?forum=wpf
Which isn't the best way of doing bindings because of possible memory leaks:
https://stackoverflow.com/questions/18542940/can-bindings-create-memory-leaks-in-wpf