今天跟著書本寫了一個很有趣的程式,它可以讓背景變的七彩閃爍,超炫的。
程式碼
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace Flashy
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
while (Visible)
//此處使用Visible而不使用true,不然就算關掉,程式也會一直執行。
{
for (int c = 0; c < 254 && Visible; c++)
{
this.BackColor = Color.FromArgb(c, 255 - c, c);
Application.DoEvents();
//告訴作業系統執行程式以外的動作,以防程式佔取整個CPU。
System.Threading.Thread.Sleep(3);
}
for (int c = 254; c < 0 && Visible; c--)
{
this.BackColor = Color.FromArgb(c, 255 - c, c);
Application.DoEvents();
System.Threading.Thread.Sleep(3);
}
}
}
}
}
沒有留言:
張貼留言