FrameworkPropertyMetadata.OnApply(DependencyProperty, Type) Method

Definition

Called when this metadata has been applied to a property, which indicates that the metadata is being sealed.

protected:
 override void OnApply(System::Windows::DependencyProperty ^ dp, Type ^ targetType);
protected override void OnApply (System.Windows.DependencyProperty dp, Type targetType);
override this.OnApply : System.Windows.DependencyProperty * Type -> unit
Protected Overrides Sub OnApply (dp As DependencyProperty, targetType As Type)

Parameters

dp
DependencyProperty

The dependency property to which the metadata has been applied.

targetType
Type

The type associated with this metadata if this is type-specific metadata. If this is default metadata, this value can be null.

Remarks

Any mutability of the data structure of a FrameworkPropertyMetadata instance should be marked as immutable when this method is invoked.

Notes to Inheritors

The FrameworkPropertyMetadata implementation of this method does nothing beyond calling the base implementation.

Applies to

See also