PropertyChangedEventArgsT Constructor |
Namespace:
Enkoni.Framework
Assembly:
Enkoni.Framework (in Enkoni.Framework.dll) Version: 1.3.0.1
Syntaxpublic PropertyChangedEventArgs(
string propertyName,
T oldValue,
T newValue
)
Public Sub New (
propertyName As String,
oldValue As T,
newValue As T
)
public:
PropertyChangedEventArgs(
String^ propertyName,
T oldValue,
T newValue
)
new :
propertyName : string *
oldValue : 'T *
newValue : 'T -> PropertyChangedEventArgs
Parameters
- propertyName
- Type: SystemString
The name of the property that changed. - oldValue
- Type: T
The old (previous) value of the property. - newValue
- Type: T
The new (current) value of the property.
See Also