PropertyChangedMessageT Constructor (Object, String, T, T) |
Namespace:
Enkoni.Framework.UI.Mvvm
Assembly:
Enkoni.Framework.UI (in Enkoni.Framework.UI.dll) Version: 1.3.0.1
Syntaxpublic PropertyChangedMessage(
Object sender,
string propertyName,
T oldValue,
T newValue
)
Public Sub New (
sender As Object,
propertyName As String,
oldValue As T,
newValue As T
)
public:
PropertyChangedMessage(
Object^ sender,
String^ propertyName,
T oldValue,
T newValue
)
new :
sender : Object *
propertyName : string *
oldValue : 'T *
newValue : 'T -> PropertyChangedMessage
Parameters
- sender
- Type: SystemObject
The sender of the message. - propertyName
- Type: SystemString
The name of the property that changed. - oldValue
- Type: T
The old value of the property. - newValue
- Type: T
The new value of the property.
See Also