标签: vb.net
有什么方法可以使用if语句来评估图像是否在某个位置?
例如:
If picturebox1.Location = (500,500) Then label1.Text = nothing End if
谢谢!
答案 0 :(得分:1)
你快到了。试试这个:
If picturebox1.Location = new Point(500,500) Then