我想知道是否有任何解決方案用計時器動畫標籤?我希望label2向左緩慢前進,直到擊中label1並且它被擊中時,從已經開始向左的位置向後退。 我嘗試這樣做,但是當打LABEL1它停止:C#從左至右移動標籤
label2.Location = new Point(label2.Location.X - 4, label2.Location.Y);
if (label2.Location.X == label1.Location.Y)
{
label2.Location = new Point(label2.Location.X + 4, label2.Location.Y);
}
請問你能寫得更清楚嗎? – Castiel