Short question: Do any of MS's built in Data Objects support INotifyPropertyChanged?
Long explination: So I'm going to be displaying alot of data with databound controls. The data is going to be chaging somewhat frequently with user interaction. The application is a basic windows form app.
Rather than wire up events for all the data to the display controls I'm hoping that I can use data objects that implement INotifyPropertyChanged, that way the controls don't need to know the how, when or why their data changed just that they need to update themselves.
Sanity check: Am I even barking up the right tree here?