1. 程式人生 > >使用Timer組件_實現定時更改窗體顏色

使用Timer組件_實現定時更改窗體顏色

分享圖片 ima bubuko 更改 interval next src gree clas

1 向窗體拖入Timer組件

技術分享圖片

2 更改其Enable屬性為true

3 其interval屬性為300

技術分享圖片

4 在Tick事件中寫入隨機變色代碼

 1         private void timer1_Tick(object sender, EventArgs e)
 2         {  //隨機變色代碼
 3             Random rand = new Random();
 4             int i = rand.Next();
 5             i = i % 6;
 6             switch (i) { 
 7                 case
0: 8 case 1: 9 BackColor=Color.Red; 10 break; 11 case 2: 12 case 3: 13 BackColor=Color.Yellow; 14 break; 15 case 4: 16 case 5: 17 BackColor = Color.Green;
18 break; 19 } 20 }

5 效果:

技術分享圖片

技術分享圖片

技術分享圖片

使用Timer組件_實現定時更改窗體顏色