コード例 #1
0
ファイル: MainViewModel.cs プロジェクト: no10pc/GPSLocation
 void client_ConvertLonLatPtToNearestPlaceCompleted(object sender, myTerraService.ConvertLonLatPtToNearestPlaceCompletedEventArgs e)
 {
     //Area = String.Format("当前位置\n{0}", e.Result);
 }
コード例 #2
0
 void client_ConvertLonLatPtToNearestPlaceCompleted(object sender, myTerraService.ConvertLonLatPtToNearestPlaceCompletedEventArgs e)
 {
     textBlock1.Text = e.Result;
     //throw new NotImplementedException();
 }
コード例 #3
0
ファイル: Add.xaml.cs プロジェクト: xiaya1986/XapNote
 void client_ConvertLonLatPtToNearestPlaceCompleted(
     object sender, 
     myTerraService.ConvertLonLatPtToNearestPlaceCompletedEventArgs e)
 {
     location = e.Result;
 }