RoutedEvent.OwnerType Property

Definition

Gets the registered owner type of the routed event.

public:
 property Type ^ OwnerType { Type ^ get(); };
public Type OwnerType { get; }
member this.OwnerType : Type
Public ReadOnly Property OwnerType As Type

Property Value

The owner type of the routed event.

Remarks

This type can be any object type, not necessarily limited to DependencyObject. In cases of routed events that have owners added, this property will return the first declared owner.

The value of this property originates from the RegisterRoutedEvent method that defines a RoutedEvent. Specifically, the value of OwnerType is the ownerType parameter value that was passed to RegisterRoutedEvent.

Applies to

See also