如果(picturebox1.location =

时间:2011-04-24 16:57:27

标签: c#

我只是在学习C#而且有一个问题。

我需要这样的东西。

if (pictureBox1.Location = 177, 523)
{
....
}

我该怎么做?

2 个答案:

答案 0 :(得分:4)

Location属性的类型为Point。你需要

if (pictureBox1.Location == new Point(177, 523)) { ... }

if (pictureBox1.Left == 177 && pictureBox1.Top == 523) { ... }

答案 1 :(得分:1)

尝试使用picturebox1.Leftpicturebox1.Top属性,而不是.Location