Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.36 KB

propertychangedcallback.md

File metadata and controls

27 lines (20 loc) · 1.36 KB
-api-id -api-type
T:Windows.UI.Xaml.PropertyChangedCallback
winrt delegate

Windows.UI.Xaml.PropertyChangedCallback

-description

Represents the callback that is invoked when the effective property value of a dependency property changes.

-parameters

-param d

The DependencyObject on which the property has changed value.

-param e

Event data that is issued by any event that tracks changes to the effective value of this property.

-remarks

You implement callbacks based on this delegate to provide the property-changed 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 more info see Custom dependency properties.

-examples

-see-also

Register, RegisterAttached, Custom dependency properties, Dependency properties overview