Пример #1
0
 /// <summary>
 /// A private mouse event to send the mouse location
 /// </summary>
 private void HandleMouseMovement(object sender, MouseEventArgs e)
 {
     //Passes the mouse's x and y location to the mousde helper method
     controller.MouseHelper(e.X, e.Y);
 }