Should our own code subscribe to PropertyChanged?

别等时光非礼了梦想. 提交于 2019-12-08 03:10:15

问题


We have a number of data objects that realize INotifyPropertyChanged to allow for WPF Binding updates. There are also a number of places where our code subscribes to PropertyChanged because we're interested in some value updates.

This results in pretty ugly code where we need to check which property actually changed (we do this using Expressions so it's always type/refactor safe).

Is the preference to raise a specific event (PriceChanged etc...) for when we want to subscribe to it, or hook into PropertyChanged and check the property name?


回答1:


If a number of properties you want to subscribe to is not very big, I'd create dedicated events as they are better in terms of readability and discoverability.

However, if there are quite a few properties the answer is not so obvious. I usually try to avoid such situations by applying Observer Synchronization pattern (subscribing to Model changes rather than ViewModel). It helps me keep VMs thin.



来源:https://stackoverflow.com/questions/10976537/should-our-own-code-subscribe-to-propertychanged

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!