Private void Form1_MouseMove(Object sender,MouseEventArgs e) { TextBox1.Text=e.X.ToString(); TextBox2.Text=e.Y.ToString(); }
Comment