SimpleOrientation 枚举

定义

指示设备的方向。

public enum class SimpleOrientation
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
enum class SimpleOrientation
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
public enum SimpleOrientation
var value = Windows.Devices.Sensors.SimpleOrientation.notRotated
Public Enum SimpleOrientation
继承
SimpleOrientation
属性

Windows 要求

设备系列
Windows 10 (在 10.0.10240.0 中引入)
API contract
Windows.Foundation.UniversalApiContract (在 v1.0 中引入)

字段

Facedown 5

设备正面朝下,显示器对用户隐藏。

Faceup 4

设备正面朝上,显示器对用户可见。

NotRotated 0

设备未旋转。

Rotated180DegreesCounterclockwise 2

设备逆时针旋转 180 度。

Rotated270DegreesCounterclockwise 3

设备逆时针旋转 270 度。

Rotated90DegreesCounterclockwise 1

设备逆时针旋转 90 度。

注解

平板电脑设备支持 FaceupFacedown 值。 可以使用它们来支持电源管理:只要方向为 Faceup,应用程序将继续运行;但是,方向为 Facedown 后,应用程序可以暂停或进入“睡眠模式”。

适用于