/// <summary>
 /// Code to execute when location of device changes
 /// </summary>
 public override void OnGeolocationStatusChanged(object sender, System.Device.Location.GeoPositionStatusChangedEventArgs e)
 {
     base.OnGeolocationStatusChanged(sender, e);
 }
예제 #2
0
 private void LocationService_StatusChanged(object sender, System.Device.Location.GeoPositionStatusChangedEventArgs e)
 {
     Status = e.Status.ToString();
 }