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.
| Parameter | Type | Description |
|---|---|---|
property | string | The property whose value changed. |
oldValue | object | The value of the property before the change. |
newValue | object | The 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.