如何使用C#找到当前的屏幕方向?
我尝试了以下代码但没有取得多大成功。
{{1}}
答案 0 :(得分:1)
您可以改为使用SystemInformation - 对象并使用其ScreenOrientation。
你会得到一个ScreenOrientation - enumartion。
var orientation = SystemInformation.ScreenOrientation;
Console.WriteLine(orientation);
使用默认方向在我的系统上打印'Angle0'