1 向窗体拖入Timer组件
2 更改其Enable属性为true
3 其interval属性为300
4 在Tick事件中写入随机变色代码
private void timer1_Tick(object sender, EventArgs e)
{ //随机变色代码
Random rand = new Random();
int i = rand.Next();
i = i % ;
switch (i) {
case :
case :
BackColor=Color.Red;
break;
case :
case :
BackColor=Color.Yellow;
break;
case :
case :
BackColor = Color.Green;
break;
}
}
5 效果: