Generic event arguments for property value changes. More...
Inherits EventArgs.
Public Member Functions | |
PropertyValueChangedEventArgs (T oldValue, T newValue) | |
Initializes the event args. More... | |
Properties | |
T | OldValue [get] |
Value before the change was done. | |
T | NewValue [get] |
Value after the change was done. | |
Generic event arguments for property value changes.
T | Property value type. |
PropertyValueChangedEventArgs | ( | T | oldValue, |
T | newValue | ||
) |
Initializes the event args.
oldValue | Value before the change was done. |
newValue | Value after the change was done. |