我只是在学习C#而且有一个问题。
我需要这样的东西。
if (pictureBox1.Location = 177, 523)
{
....
}
我该怎么做?
答案 0 :(得分:4)
Location属性的类型为Point。你需要
if (pictureBox1.Location == new Point(177, 523)) { ... }
或
if (pictureBox1.Left == 177 && pictureBox1.Top == 523) { ... }
答案 1 :(得分:1)
尝试使用picturebox1.Left
和picturebox1.Top
属性,而不是.Location
。