示例#1
0
文件: Form1.cs 项目: duurt/tcx-editor
 private void MapControl1_MapClickEvent(object sender, MapClickEventArgs e)
 {
     GetNearestEvent?.Invoke(
         this,
         new GetNearestEventArgs
     {
         ReferencePoint = new Position(e.Lattitude, e.Longitude)
     });
 }
示例#2
0
 public void RaiseGetNearestEvent(GetNearestEventArgs args) => GetNearestEvent.Invoke(this, args);