Represents the callback that is invoked when the effective property value of a dependency property changes.
Namespace:
System.Windows
Assembly:
System.Windows (in System.Windows.dll)
Visual Basic (Declaration)
Public Delegate Sub PropertyChangedCallback ( _
d As DependencyObject, _
e As DependencyPropertyChangedEventArgs _
)
Dim instance As New PropertyChangedCallback(AddressOf HandlerMethod)
public delegate void PropertyChangedCallback(
DependencyObject d,
DependencyPropertyChangedEventArgs e
)
You implement callbacks based on this delegate to provide the property change behavior for a custom dependency property. You might use this callback to provide value constraints, or to initiate value changes in other properties that depend on the value of the property that is being changed.
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
Reference