检查vb.net中if语句中的图片框位置

时间:2015-06-05 02:05:33

标签: vb.net

有什么方法可以使用if语句来评估图像是否在某个位置?

例如:

If picturebox1.Location = (500,500) Then
   label1.Text = nothing
End if

谢谢!

1 个答案:

答案 0 :(得分:1)

你快到了。试试这个:

If picturebox1.Location = new Point(500,500) Then