在Visual Studio中检测多个屏幕方向是否翻转,横向或纵向

时间:2018-09-07 10:41:01

标签: c# screen-orientation

根据documentation,我可以使用

获取所有屏幕
System.Windows.Forms.Screen.AllScreens
foreach (var screen in System.Windows.Forms.Screen.AllScreens)
if( screen.Bounds.Height > screen.Bounds.Width )
{
    //Run the application in portrait, as in:
    MessageBox.Show("Run in portrait.");
}
else
{
    //Run the application in landscape, as in:
    MessageBox.Show("Run in landscape.");
}

但是我无法获得此屏幕是否翻转的信息。

您是否知道弄清楚屏幕是否翻转的任何方法?

谢谢

0 个答案:

没有答案