Class AttachableObject<T>
Represents an object that is attached to an owning object.
Inheritance
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.Navigation.dll
Syntax
public abstract class AttachableObject<T> : DependencyObject where T : class
Type Parameters
T
The type that owns this object. |
Constructors
AttachableObject()
Initializes a new instance of the AttachableObject<T> class.
Declaration
protected AttachableObject()
Properties
Owner
Gets the object instance that owns this service.
Declaration
public T Owner { get; protected set; }
Property Value
T
|
Methods
OnAttached()
Performs the core logic behind the Attach routine. Allows inheritors to provide additional implementation.
Declaration
protected virtual void OnAttached()
OnDetached(T)
Performs the core logic behind the Detach routine. Allows inheritors to provide additional implementation.
Declaration
protected virtual void OnDetached(T previousOwner)
Parameters
T
previousOwner
|