Click or drag to resize
NotifyPropertyChangedOnPropertyChanged Method
Invoked immediately after the value of a property has been changed.

Namespace: Lawo.ComponentModel
Assembly: Lawo (in Lawo.dll) Version: 1.4.1707.27006
Syntax
C#
protected virtual void OnPropertyChanged(
	PropertyChangedEventArgs e
)

Parameters

e
Type: System.ComponentModelPropertyChangedEventArgs
Event data that can be examined by overriding code. The event data carries the name of the changed property.
Remarks
Overrides must call this method if a change needs to be published through the PropertyChanged event.
See Also