我有一个打开图片的图片框和8个不同的文本框,我想要的是,当我第一次单击该图片框时,我在前两个文本框中获得了X和Y坐标,当我第二次单击了第三个时第四个文本框获取坐标,依此类推,然后在第五次单击时,我重置八个文本框,然后我可以再次执行此操作。 截至目前,我仅能获得一个点的坐标,并且只能在图片框外获取坐标。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApp1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
protected override void OnMouseClick(MouseEventArgs e)
{
base.OnMouseClick(e);
textBox1.Text = e.X.ToString();
textBox2.Text = e.Y.ToString();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void BtnBrowse_Click(object sender, EventArgs e)
{
openFileDialog1.Filter = "All jpg files (*.jpg)|*.jpg";
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
pictureBox1.ImageLocation = openFileDialog1.FileName;
}
}
}
}