Table of Contents

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

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

NewValue

The value of the property after the change.

public readonly object NewValue

Field Value

object

OldValue

The value of the property before the change.

public readonly object OldValue

Field Value

object

Property

The property whose value changed.

public readonly string Property

Field Value

string