Example #1
0
        private void map_MouseMove(object sender, MouseEventArgs e)
        {
            MouseLocation.fromImage(e.Location.X, e.Location.Y);

            statusText.Text = " Map[x:" + MouseLocation.map_x.ToString() + " y:" + MouseLocation.map_y.ToString() + "] - Real[x:" + MouseLocation.real_x.ToString() + " y:" + MouseLocation.real_y.ToString() + "] - Image[x:" + MouseLocation.image_x.ToString() + " y:" + MouseLocation.image_y.ToString() + "]";
        }