vote up 0 vote down star

What interface must i implement to be able to create wpf event when some thing changes?

flag

3 Answers

vote up 3 vote down check

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.

public event PropertyChangedEventHandler PropertyChanged = delegate { };
link|flag
vote up 2 vote down

WPF controls inherit DependencyObject class. See: MSDN

For business entities, you could still implement INotifyPropertyChanged.

link|flag
vote up 2 vote down

INotifyPropertyChanged. Here is a "How To".

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.