ManipulationModes 枚举
定义
指定如何解释操作事件。Specifies how manipulation events are interpreted.
此枚举有一个 FlagsAttribute 属性,允许按位组合成员值。
public enum class ManipulationModes
[System.Flags]
public enum ManipulationModes
type ManipulationModes =
Public Enum ManipulationModes
- 继承
- 属性
字段
All | 15 | 操作可以缩放、转换或旋转对象,并且可通过一个输入点发生。A manipulation can scale, translate, or rotate an object and can occur with one point of input. |
None | 0 | 不发生操作事件。Manipulation events do not occur. |
Rotate | 4 | 操作可以旋转对象。A manipulation can rotate an object. |
Scale | 8 | 操作可以缩放对象。A manipulation can scale an object. |
Translate | 3 | 操作可以转换对象。A manipulation can translate an object. |
TranslateX | 1 | 操作可以水平转换对象。A manipulation can translate an object horizontally. |
TranslateY | 2 | 操作可以垂直转换对象。A manipulation can translate an object vertically. |