Class PropertyChangedEventArgs
- Namespace
- nanoFramework.UI
- Assembly
- nanoFramework.Graphics.dll
Provides data for the various property changed events.
public class PropertyChangedEventArgs
- Inheritance
-
PropertyChangedEventArgs
- Inherited Members
- Extension Methods
Constructors
PropertyChangedEventArgs(string, object, object)
Initializes a new instance of the PropertyChangedEventArgs class.
public PropertyChangedEventArgs(string property, object oldValue, object newValue)
Parameters
propertystringThe property whose value changed.
oldValueobjectThe value of the property before the change.
newValueobjectThe value of the property after the change.
Fields
NewValue
The value of the property after the change.
public readonly object NewValue
Field Value
OldValue
The value of the property before the change.
public readonly object OldValue
Field Value
Property
The property whose value changed.
public readonly string Property