2010年8月2日 星期一

Flashy

今天跟著書本寫了一個很有趣的程式,它可以讓背景變的七彩閃爍,超炫的。

程式碼


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);
                }
          
            }

        }
    }
}

沒有留言:

張貼留言

C#小技巧

1.輸入mbox之後,再連續案兩次tab鍵,會自動產生messagebox.show("test");
2.區塊註解Ctrl + K + C, 區塊取消註解Ctrl + K + U