gpt4 book ai didi

windows-phone-7 - 如何确定 Windows Phone 7 的方向?

转载 作者:行者123 更新时间:2023-12-05 00:42:01 24 4
gpt4 key购买 nike

如何判断设备是垂直(纵向)还是水平(横向)定向?

是否有简化此操作的 API 或者您是否必须使用加速度计“手动”进行确定?

最佳答案

我自己只是看过 Windows 7 手机(通过 vs2010 快速手机版)。

似乎在这背后的代码中

 public MainPage()
{
InitializeComponent();
// seems to set the supported orientations that your program will support.
SupportedOrientations = SupportedPageOrientation.Portrait | SupportedPageOrientation.Landscape;
}

那么实际的形式有
  private void PhoneApplicationPage_OrientationChanging(object sender, OrientationChangedEventArgs e)
{
var test = e.Orientation;

}

所以当方向改变时,e.Orientation 会告诉你它是什么方向。例如LandscapeRight。

关于windows-phone-7 - 如何确定 Windows Phone 7 的方向?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2473484/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com