Mouse Click Location On A PictureBox Not Detected Within Label
问题 I have a Form that contains only 2 things, a PictureBox and a Label . I added a mouse click event handler to the picture box. this.pictureBox1.MouseClick += picture_MouseClick; Inside the handler I need to check if the location of the mouse click is within the bounds of the label. To do this, I am using the mouse event location and checking to see whether that location is within the bounds of the label. private void picture_MouseClick(object sender, MouseEventArgs e) { if (label1.Bounds