首页> C#> SimpleOrientationSensor返回空
作者:互联网
我正在使用SimpleOrientationSensor在我的应用程序中获取屏幕方向信息.我正在Windows Simulator中测试此应用程序,但是我总是将传感器对象的值设置为null.
这就是我在做什么:
SimpleOrientationSensor sensor;
sensor = SimpleOrientationSensor.GetDefault();
if (sensor != null)
{
sensor.OrientationChanged += sensor_OrientationChanged;
}
我知道,当没有可用的Sensor时,SimpleOrientationSensor.GetDefault()将返回null.我应该调整模拟器以获取传感器信息吗?还是处理这些变化?
解决方法:
根据this article,模拟器不支持SimpleOrientationSensor类.
The Simulator doesn’t support the emulation of Orientation Sensor, and is only able to trigger a display orientation change.
标签:net-4-5,windows-8,microsoft-metro,c 来源: https://codeday.me/bug/20191127/2074780.html