Represents the callback that is invoked when the effective property value of a dependency property changes.
'Usage Dim instance As New PropertyChangedCallback(AddressOf HandlerMethod) 'Declaration Public Delegate Sub PropertyChangedCallback ( _ d As DependencyObject, _ e As DependencyPropertyChangedEventArgs _ )
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.