示例#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();
             }
         }
     }
 }
示例#2
0
 public WaypointEventArgs(Data.Waypoint wp)
 {
     Waypoint = wp;
 }
示例#3
0
 public WaypointEventArgs(Data.Waypoint wp)
 {
     Waypoint = wp;
 }