When ever my PictureBox is created, the cursor position in at x=0,y=0 which is the top left corner of the PictureBox. I want to place my Cursor in the center.
Cursor.Position = new Point(Cursor.Position.X - 75, Cursor.Position.Y - 75);
I tried doing this but it didn’t helped. As the size of my PictureBox is 150,150
1 Answer