RoutedEvent.OwnerType Property
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.
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.