 | PropertyValueChangedEventHandler<TValue> Delegate |
PropertyChanged event handler that supports standard property changed signature events with additional old value and new value parameters.
Namespace:
BionicCode.Utilities.Net.Standard.ViewModel
Assembly:
BionicCode.Utilities.Net.Standard (in BionicCode.Utilities.Net.Standard.dll) Version: 1.0.4
SyntaxPublic Delegate Sub PropertyValueChangedEventHandler(Of TValue) (
sender As Object,
propertyChangedArgs As PropertyValueChangedArgs(Of TValue)
)
Dim instance As New PropertyValueChangedEventHandler(Of TValue)(AddressOf HandlerMethod)
generic<typename TValue>
public delegate void PropertyValueChangedEventHandler(
Object^ sender,
PropertyValueChangedArgs<TValue>^ propertyChangedArgs
)
J# supports the use of generic APIs, but not the declaration of new ones.
JScript does not support generic types or methods.
function(sender, propertyChangedArgs);
Parameters
- sender
- Type: System.Object
- propertyChangedArgs
- Type: BionicCode.Utilities.Net.Standard.ViewModel.PropertyValueChangedArgs<TValue>
Type Parameters
- TValue
[Missing <typeparam name="TValue"/> documentation for "T:BionicCode.Utilities.Net.Standard.ViewModel.PropertyValueChangedEventHandler`1"]
See Also