C#获取屏幕方向

时间:2017-07-04 06:02:13

标签: c# screen-orientation

如何使用C#找到当前的屏幕方向?

我尝试了以下代码但没有取得多大成功。

{{1}}

1 个答案:

答案 0 :(得分:1)

您可以改为使用SystemInformation - 对象并使用其ScreenOrientation。

你会得到一个ScreenOrientation - enumartion。

var orientation = SystemInformation.ScreenOrientation;
Console.WriteLine(orientation);

使用默认方向在我的系统上打印'Angle0'