ManipulationProcessor2D Class
Implements a multiple-input, single-output compositor for two-dimensional (2-D) transformations in a shared coordinate space.
Assembly: System.Windows.Input.Manipulations (in System.Windows.Input.Manipulations.dll)
The ManipulationProcessor2D type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | ManipulationProcessor2D(Manipulations2D) | Creates a new ManipulationProcessor2D object. |
![]() | ManipulationProcessor2D(Manipulations2D, ManipulationPivot2D) | Creates a new ManipulationProcessor2D object. |
| Name | Description | |
|---|---|---|
![]() | MinimumScaleRotateRadius | Gets or sets the minimum radius, in coordinate units, necessary for a manipulator to participate in scaling and rotation. |
![]() | Pivot | Gets or sets the pivot information for the manipulation processor. |
![]() | SupportedManipulations | Gets or sets the current set of supported manipulations. |
| Name | Description | |
|---|---|---|
![]() | CompleteManipulation | Forces the current manipulation to complete and raises the Completed event. |
![]() | Equals(Object) | 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.) |
![]() | ProcessManipulators | Processes the specified manipulators as a single batch action. |
![]() | SetParameters | Sets parameters on the manipulation processor. |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
A ManipulationProcessor2D object treats a collection of manipulators as a composite object. Your application is then freed from the necessity of tracking and managing individual manipulators.
A manipulation processor by itself does not cause an element to move. Your application begins a manipulation as necessary, and then receives information from a manipulation processor by listening to the Started, Delta and Completed events. The values received via these events enable you to change the location, size or orientation of an element as needed.
You inform a manipulation processor which types of manipulations are allowed (translate, scale, rotate) by setting the SupportedManipulations property. You can then provide non-conditional logic to the transformation of the element that is being manipulated. For instance, instead of checking if rotation is enabled before changing the orientation of an element, you can unconditionally apply the rotation factor received from the manipulation processor; if rotation is not enabled, the manipulation processor will report that no rotational change has occurred.
When an element that is being manipulated is released (all manipulators are removed), you can use inertia processing to simulate friction and cause the element to gradually slow its movements before coming to a stop. For more information see the InertiaProcessor2D class.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
