Esempio n. 1
0
 void WaypointCollection_WaypointDataChanged(object sender, EventArgs e)
 {
     Data.Waypoint l = sender as Data.Waypoint;
     if (l != null)
     {
         if (!string.IsNullOrEmpty(l.GeocacheCode))
         {
             Data.Geocache gc = GetGeocache(l.GeocacheCode);
             if (gc != null)
             {
                 gc.ResetWaypointsData();
             }
         }
     }
 }