Ejemplo n.º 1
0
 void UserWaypoints_UserWaypointRemoved(object sender, EventArguments.UserWaypointEventArgs e)
 {
     foreach (Framework.Data.Geocache gc in this)
     {
         if (gc.Code == e.Waypoint.GeocacheCode)
         {
             gc.ResetCachedUserWaypointsData();
             break;
         }
     }
 }
Ejemplo n.º 2
0
 void gc_DataChanged(object sender, EventArguments.UserWaypointEventArgs e)
 {
     OnDataChanged(e.Waypoint);
 }