Example #1
0
 /// <summary>
 /// Actualiza el texto de estado.
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 void UpdateStatusText(object sender, InteractionEventArgs e)
 {
     statusLabel.Text = e.EventDescription;
      pboxCanvas.Invalidate();
 }
Example #2
0
 /// <summary>
 /// Lanza el evento Interaction.
 /// </summary>
 /// <param name="e">Mensaje de la interaccion.</param>
 private void Map_Interaction(InteractionEventArgs e)
 {
     InteractionEventHandler handler = this.Interaction;
      if (handler != null)
     handler(this, e);
 }
Example #3
0
 void Map_Interaction(object sender, InteractionEventArgs e)
 {
     if (Interaction != null)
     Interaction(this, e);
 }