实现效果:
知识运用:
MouseEventArgs类的X属性Y属性 //该类用来为MouseUp MouseDown 和 MouseMove事件提供数据
实现代码:
private void Form1_MouseMove(object sender, MouseEventArgs e) { textBox1.Text = e.X.ToString(); textBox2.Text = e.Y.ToString(); }
原文地址:https://www.cnblogs.com/feiyucha/p/10281449.html
时间: 2024-11-05 13:33:01