INotifyPropertyChanged is important interface for building WPF or Silverlight applications using M-V-VM concept (MSDN article). In simple language, you have a Model which provides access to your data (e.g in database, files, web, etc.). Then you have a ViewModel that access data in the Model via Model's interface and provides data to a View which is XAML file with UI layout. Linkage between ViewMo