windows-phone-7 – 是否可以检查位置服务是否有效?

前端之家收集整理的这篇文章主要介绍了windows-phone-7 – 是否可以检查位置服务是否有效?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以检查位置服务是否有效?

我的意思是设置>位置>位置服务

可能没有直接的API用于调用,但它可以与GeoCoordinateWatcher一起使用吗?

GeoCoordinateWatcher g = new GeoCoordinateWatcher();
            g.Start();
            if (g.Permission.Equals(GeoPositionPermission.Granted))
            {
                //Your location services is enabled. Go ahead.
                //Your codes goes here.
            }
            else if (g.Permission.Equals(GeoPositionPermission.Denied) || g.Permission.Equals(GeoPositionPermission.Unknown))
            {                    
                MessageBox.Show("Location services are disabled. To enable them,Goto Settings - Location - Enable Location Services.","Location services",MessageBoxButton.OK);
            }
原文链接:https://www.f2er.com/windows/364519.html

猜你在找的Windows相关文章