我有 4 只狗正在比赛,我需要将它们移过表格,但它们不会逐渐移动,它们从起跑线开始并立即传送到终点线,而不会在中间移动。随着每个计时器滴答声,它们的 location.X 都会增加。
我需要一个计时器还是四个?我目前有一个,它的间隔设置为 400。
这是相关代码:
private void btnRace_Click(object sender, EventArgs e)
{
btnBet.Enabled = false;
timer1.Stop();
timer1.Start();
}
private void timer1_Tick(object sender, EventArgs e)
{ while (!isWon)
{
for (i = 0; i < Dogs.Length; i++) // there are four dogs
{
if (Dogs[i].Run()) // Run() returns true if full racetrack is covered by this dog
{
Winner = i + 1;
isWon = true;
MessageBox.Show("We have a winner! Dog #" + Winner);
break;
}
}
}
在 Dog 类中:
public bool Run()
{
Distance = 10 + Randomizer.Next(1, 4);
p = this.myPictureBox.Location;
p.X += Distance ;
this.myPictureBox.Location = p;
//return true if I won the game
if (p.X >= raceTrackLength)
{
return true ;
}
else
{
return false ;
}
}
这些狗似乎只移动了一步,然后立即出现在终点线上。我究竟做错了什么?