I see several people saying that WPF can use “Custom Type Descriptors” for “Change notification”.
The ways I know how to do Change Notification are:
object.GetBindingExpression(Bound.property).UpdateTarget();
Or have my object implement INotifiyPropertyChanged.
I see comments saying that Custom Type Descriptors will work too, but no one gives a good example on how it works. I am now asking for that example (IE a good example of WPF Data Binding and updating via Custom Type Descriptors.)
Here’s a pretty simple example for you.
Window1.xaml:
Window1.xaml.cs: