How to move PictureBox in C#?
问题 i have used this code to move picture box on the pictureBox_MouseMove event pictureBox.Location = new System.Drawing.Point(e.Location); but when i try to execute the picture box flickers and the exact position cannot be identified. can you guys help me with it. I want the picture box to be steady... 回答1: You want to move the control by the amount that the mouse moved: Point mousePos; private void pictureBox1_MouseDown(object sender, MouseEventArgs e) { mousePos = e.Location; } private void