What interface must i implement to be able to create wpf event when some thing changes?
|
|
INotifyPropertyChanged. It's in System.ComponentModel A small trick when using this interface, when you implement it with an empty delegate you don't have to check if the event is null every time you raise it.
|
||
|
|
|
|
WPF controls inherit DependencyObject class. See: MSDN For business entities, you could still implement INotifyPropertyChanged. |
||
|
|
|
|
INotifyPropertyChanged. Here is a "How To". |
||
|
|
