我正在尝试编写一个需要找到鼠标单击的 X 和 Y 的程序,所以我编写了这个小调试代码
Private Sub PictureBox1_MouseClick(sender As Object, e As MouseEventArgs) Handles PictureBox1.MouseClick
Console.WriteLine(ToString(e.X) + "," + ToString(e.Y))
End Sub
当我运行它时,我收到错误,An unhandled exception of type 'System.IndexOutOfRangeException' occurred in WindowsApplication1.exe
我看不出我的代码有什么问题。