DependencyPropertyChangedEventHandler Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents the method that will handle events that occur when a DependencyProperty is changed on a particular DependencyObject implementation.
public delegate void DependencyPropertyChangedEventHandler(Platform::Object ^ sender, DependencyPropertyChangedEventArgs ^ e);
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.UI.Xaml.WinUIContract), 65536)]
[Windows.Foundation.Metadata.Guid(1273551989, 14141, 24398, 160, 180, 84, 185, 238, 175, 180, 169)]
public delegate void DependencyPropertyChangedEventHandler(object sender, DependencyPropertyChangedEventArgs e);
Public Delegate Sub DependencyPropertyChangedEventHandler(sender As Object, e As DependencyPropertyChangedEventArgs)
Parameters
- sender
-
Object
Platform::Object
The source of the event (typically the object where the property changed).
The event data.
- Attributes
Remarks
DependencyPropertyChangedEventHandler
is the delegate to use when writing handlers for the Control.IsEnabledChanged event. That event is the only defined Windows Runtime event that uses this delegate.
A custom control implementer might consider using DependencyPropertyChangedEventHandler
as the delegate type if a custom event is fired as a result of a dependency property value change. You can only fire such an event from within the context of a PropertyChangedCallback. This is because the value that changed (the property, the old and new value) should be in the DependencyPropertyChangedEventArgs that are reported for the event at the property-system level. But there aren't any constructors for DependencyPropertyChangedEventArgs
and none of its properties are settable, so the only way to get a DependencyPropertyChangedEventArgs
value is to get it from the original PropertyChangedCallback
parameters and pass it through when you fire your custom event.
DependencyPropertyChangedEventHandler
is not the delegate that you use for custom dependency property metadata and a custom property-changed callback behavior. For that, you want PropertyChangedCallback. For more info, see Custom dependency properties.