如果(picturebox1.位置=
本文关键字:位置 picturebox1 如果 | 更新日期: 2023-09-27 17:52:36
我正在学习c#,有一个问题。
我需要这样的东西。
if (pictureBox1.Location = 177, 523)
{
....
}
我该怎么做?
Location属性的类型为Point。你需要
if (pictureBox1.Location == new Point(177, 523)) { ... }
或
if (pictureBox1.Left == 177 && pictureBox1.Top == 523) { ... }
尝试使用picturebox1.Left
和picturebox1.Top
属性而不是.Location
。