Esempio n. 1
0
 void UserWaypointCollection_WaypointDataChanged(object sender, EventArgs e)
 {
     Data.UserWaypoint l = sender as Data.UserWaypoint;
     if (l != null)
     {
         if (!string.IsNullOrEmpty(l.GeocacheCode))
         {
             Data.Geocache gc = GetGeocache(l.GeocacheCode);
             if (gc != null)
             {
                 gc.ResetCachedUserWaypointsData();
             }
         }
     }
 }
Esempio n. 2
0
 void LogCollection_LogDataChanged(object sender, EventArgs e)
 {
     Data.Log l = sender as Data.Log;
     if (l != null)
     {
         if (!string.IsNullOrEmpty(l.GeocacheCode))
         {
             Data.Geocache gc = GetGeocache(l.GeocacheCode);
             if (gc != null)
             {
                 gc.ResetCachedLogData();
             }
         }
     }
 }
Esempio n. 3
0
 public GeocacheEventArgs(Data.Geocache gc)
 {
     Geocache = gc;
 }
Esempio n. 4
0
 public GeocacheEventArgs(Data.Geocache gc)
 {
     Geocache = gc;
 }
Esempio n. 5
0
 public LoadFullGeocacheEventArgs(Data.Geocache gc)
 {
     RequestedForGeocache = gc;
 }