0
kicks
WPF 4.5 – Part 9 : binding to static properties
There is two different ways to make a property bindable: implementing INotifyPropertyChanged is the most known solution, the other one is to create a event named PropertyNameChanged.
In WPF 4.0 there is no way to create a static property which can be used by a binding with property change notifications.
In this post, part of a serie on the WPF 4.5 new features, we’ll see how it can now be done!