How to use INotifyPropertyChanged correctly in WPF/XAML
问题 I have a custom object that I am trying to bind to a control. On that custom object I have implemented the INotifyPropertyChanged interface. I have successfully bound to my object and a property on that object. What I can't figure out is how to go from there. I've been working on this for 2 days now and I still cannot get it working. My assumption was that when I would change the property bound to the control that the value set in that property would then show up in the control. However, no