Im a bit confused. I don
t understand what code is actually is executed when I implement INotifyPropertyChanged interface.
As i imagine the chain goes like this:
- My class impliments INotifyPropertyChanged=>
- Every property`s setter calls
NotifyPropertyChanged method=> - PropertyChangedEventHandler
invokes=>???
And i wonder what code makes my control rerender. Thanks.