Class NotifyPropertyChanged
A common implementation of INotifyPropertyChanged.
Namespace: Neon.Data
Assembly: Neon.Common.dll
Syntax
public abstract class NotifyPropertyChanged
Methods
RaisePropertyChanged(string)
Derived classes will call this when a property instance property value has changed.
Declaration
protected void RaisePropertyChanged(string propertyName = null)
Parameters
Type | Name | Description |
---|---|---|
string | propertyName | The optional property name. This defaults to the name of the caller, typically
the property's setter. This may also be passed as |
Events
PropertyChanged
Raised when an instance property value has changed.
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
Type | Description |
---|---|
PropertyChangedEventHandler |