mscorlib(4.0.0.0) API with additions
INotifyPropertyChanged.cs
1 namespace System.ComponentModel
2 {
4  [global::__DynamicallyInvokable]
5  public interface INotifyPropertyChanged
6  {
8  [global::__DynamicallyInvokable]
10  }
11 }
Notifies clients that a property value has changed.
PropertyChangedEventHandler PropertyChanged
Occurs when a property value changes.
delegate void PropertyChangedEventHandler(object sender, PropertyChangedEventArgs e)
Represents the method that will handle the E:System.ComponentModel.INotifyPropertyChanged....