0
所以,我有我試圖建立一個if語句,以便當Ball
打Target
的Target
將採取對Ball
的彩色屏幕(Ball
& Target
)左右移動的兩個對象(黑色)。GET對象顏色if語句
問題是應用程序背景正在改變,而不是目標顏色。有人能看到我出錯的地方嗎?
代碼
if (Ball.Bounds.IntersectsWith(Target.Bounds))
{
this.BackColor = Color.Black;
}
else
{
this.BackColor = Color.Red;
}
很簡單,謝謝。 – Beep