When writing WPF applications and following the Mvvm pattern I often find myself using a lot of common code. I've decided to write a series of blog posts dedicated to those common code elements. This will be the first in that series.
INotifyPropertyChanged - A common interface on view model classes. I have created an abstract class called NotifyPropertyChangedBase that encapsulates this interface in a generic way. My view model classes then inherit from this. Lets jump to the code.


No comments:
Post a Comment