如果(picturebox1.位置=

本文关键字:位置 picturebox1 如果 | 更新日期: 2023-09-27 17:52:36

我正在学习c#,有一个问题。

我需要这样的东西。

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

我该怎么做?

如果(picturebox1.位置=

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

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

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

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