Adapter Class
Used to adapt logic for a particular item.
Inheritance Hierarchy
System.Object
Microsoft.Windows.Design.Features.FeatureProvider
Microsoft.Windows.Design.Interaction.Adapter
Microsoft.Windows.Design.Interaction.ParentAdapter
Microsoft.Windows.Design.Interaction.PlacementAdapter
Namespace: Microsoft.Windows.Design.Interaction
Assembly: Microsoft.Windows.Design.Interaction (in Microsoft.Windows.Design.Interaction.dll)
Syntax
'Declaration
Public MustInherit Class Adapter _
Inherits FeatureProvider
public abstract class Adapter : FeatureProvider
public ref class Adapter abstract : public FeatureProvider
[<AbstractClass>]
type Adapter =
class
inherit FeatureProvider
end
public abstract class Adapter extends FeatureProvider
The Adapter type exposes the following members.
Constructors
Name | Description | |
---|---|---|
Adapter | Initializes a new instance of the Adapter class. |
Top
Properties
Name | Description | |
---|---|---|
AdapterType | When overridden in a derived class, gets the type of adapter this object represents. |
Top
Methods
Name | Description | |
---|---|---|
Equals | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Top
Remarks
Derive from the Adapter class to adapt logic for a particular item. For example, moving an element in a panel uses the same task, but the implementation of the task differs depending on what panel type the element is in. The drag task for the element queries its parent panel for an adapter that can perform the move operation.
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also
Reference
Microsoft.Windows.Design.Interaction Namespace