01
2012
04

C#打字游戏

//打字游戏
private void Form1_Load(object sender, EventArgs e)
{
this.timer1.Interval = 500; //定时0.5秒
this.timer1.Start();    //定时启动 
}


Random r = new Random();
private void timer1_Tick(object sender, EventArgs e)
...
«1»