How to get location of a picturebox by clicking on it in c#
location of picturebox: How to get location of a picturebox by clicking on it in c#
Collapse
X
private void pictureBox1_Click(object sender, EventArgs e) {
Point location = pictureBox1.Location;
}
Comment