Skip to main content

PropertyChangedEventArgs Class

Namespace: GHIElectronics.TinyCLR.UI · Assembly: GHIElectronics.TinyCLR.UI

Provides data for the various property changed events.

public class PropertyChangedEventArgs

Constructors

PropertyChangedEventArgs(string property, object oldValue, object newValue)

public PropertyChangedEventArgs(string property, object oldValue, object newValue)

Initializes a new instance of the PropertyChangedEventArgs class.

ParameterTypeDescription
propertystringThe property whose value changed.
oldValueobjectThe value of the property before the change.
newValueobjectThe value of the property after the change.

Fields

Property

public readonly string Property

The property whose value changed.

OldValue

public readonly object OldValue

The value of the property before the change.

NewValue

public readonly object NewValue

The value of the property after the change.