2
我剛學習C#和有問題。如果(picturebox1.location =
我需要這樣的事情。
if (pictureBox1.Location = 177, 523)
{
....
}
我怎麼能做到這一點?
我剛學習C#和有問題。如果(picturebox1.location =
我需要這樣的事情。
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
不知道我自己,因爲我不使用繪圖庫,但你有沒有試過,如果(pictureBox1.Location ==新點(177,523))? – Robert 2011-04-24 17:01:33