Ejemplo n.º 1
0
 private void MapView_BeginAction(object sender, MapActionEventArgs <Point2D> e)
 {
     if (MapActionHandler != null)
     {
         MapActionHandler.BeginPoint = e.ActionPoint;
     }
 }
Ejemplo n.º 2
0
 private void MapView_Hover(object sender, MapActionEventArgs <Point2D> e)
 {
     if (MapActionHandler != null)
     {
         MapActionHandler.HoverPoint = e.ActionPoint;
     }
 }
Ejemplo n.º 3
0
            protected virtual void OnEndAction(Point2D actionLocation)
            {
                EventHandler <MapActionEventArgs <Point2D> > @event = EndAction;

                if (@event != null)
                {
                    MapActionEventArgs <Point2D> args = new MapActionEventArgs <Point2D>(actionLocation);
                    @event(this, args);
                }
            }
Ejemplo n.º 4
0
 private void MapView_BeginAction(object sender, MapActionEventArgs<Point2D> e)
 {
     if (MapActionHandler != null)
         MapActionHandler.BeginPoint = e.ActionPoint;
 }
Ejemplo n.º 5
0
 private void MapView_Hover(object sender, MapActionEventArgs<Point2D> e)
 {
     if (MapActionHandler != null)
         MapActionHandler.HoverPoint = e.ActionPoint;
 }