Typically in the property setter of an object we may want to raise a PropertyChanged event such as, public event PropertyChangedEventHandler PropertyChanged;
Normally when you want a databound control to \'update,\' you use the \"PropertyChanged\" event to signal to the interface that the data has changed behind the scenes.
I need to know whether a p开发者_Python百科ublic property (which has getter & setter) is changed. The property is in a simple class (no user control/component etc).