2011-04-24 65 views
2

我剛學習C#和有問題。如果(picturebox1.location =

我需要這樣的事情。

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

我怎麼能做到這一點?

+1

不知道我自己,因爲我不使用繪圖庫,但你有沒有試過,如果(pictureBox1.Location ==新點(177,523))? – Robert 2011-04-24 17:01:33

回答

4

Location屬性的類型爲Point,您需要

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

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

嘗試使用picturebox1.Leftpicturebox1.Top屬性而不是.Location