I have a method to detect the left click event that visual studio made by double clicking on the form.
private void pictureBox1_Click(object sender, EventArg
You should introduce a cast inside the click event handler
click
MouseEventArgs me = (MouseEventArgs) e;