如何查看Windows Phone 8是否启用了“定位服务”?
本文关键字:定位 服务 定位服务 启用 Windows 何查看 Phone 是否 | 更新日期: 2023-09-27 18:05:33
如何查看Windows Phone 8的定位服务是否启用?
using Windows.Devices.Geolocation;
Geolocator locator = new Geolocator();
if (locator.LocationStatus == PositionStatus.Disabled)
{
// Location is turned off
}
加上PositionStatus
枚举也有几个值,如:
Ready, NoData, Initializing, Disabled, NotInitialized, NotAvailable.
希望这对你有帮助。谢谢大家。
public bool IsLocationServiceEnabled
{
get
{
Geolocator locationservice = new Geolocator();
if (locationservice.LocationStatus == PositionStatus.Disabled)
{
return false;
}
return true;
}
}
如何查找位置服务是否已关闭