[CODE]
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Threading;
namespace waTest
{
/// <summary>
/// Form1 腔晡猁佽隴﹝
/// </summary>
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.Button btnStop;
private System.Windows.Forms.Button btnStart;
private System.Windows.Forms.Timer timer1;
private System.ComponentModel.IContainer components;
private System.Windows.Forms.ComboBox comboBox1;
private Thread m_thread;
public Form1()
{
//
// Windows 敦极扢數盓厥垀斛剒腔
//
InitializeComponent();
//
// TODO: 婓 InitializeComponent 覃蚚綴氝樓睡凳婖滲杅測鎢
//
}
/// <summary>
/// 燴垀衄淏婓妏蚚腔訧埭﹝
/// </summary>
protected override void Dispose( bool disposing )
{
if(m_thread!=null)
{
if((int)m_thread.ThreadState == 96||(int)m_thread.ThreadState==97||(int)m_thread.ThreadState==6||(int)m_thread.ThreadState==7)
m_thread.Resume();
m_thread.Abort();
}
if( disposing )
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}
#region Windows 敦极扢數汜傖腔測鎢
/// <summary>
/// 扢數盓厥垀剒腔源楊 - 祥猁妏蚚測鎢晤憮党蜊
/// 森源楊腔囀﹝
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.btnClose = new System.Windows.Forms.Button();
this.btnStop = new System.Windows.Forms.Button();
this.btnStart = new System.Windows.Forms.Button();
this.timer1 = new System.Windows.Forms.Timer(this.components);
this.comboBox1 = new System.Windows.Forms.ComboBox();
this.SuspendLayout();
//
// btnClose
//
this.btnClose.Location = new System.Drawing.Point(8, 104);
this.btnClose.Name = "btnClose";
this.btnClose.TabIndex = 6;
this.btnClose.Text = "Close";
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// btnStop
//
this.btnStop.Location = new System.Drawing.Point(8, 56);
this.btnStop.Name = "btnStop";
this.btnStop.TabIndex = 7;
this.btnStop.Text = "Stop";
this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
//
// btnStart
//
this.btnStart.Location = new System.Drawing.Point(8, 8);
this.btnStart.Name = "btnStart";
this.btnStart.TabIndex = 5;
this.btnStart.Text = "Start";
this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
//
// comboBox1
//
this.comboBox1.Items.AddRange(new object[] {
"Action 1",
"Action 2"});
this.comboBox1.Location = new System.Drawing.Point(8, 136);
this.comboBox1.Name = "comboBox1";
this.comboBox1.Size = new System.Drawing.Size(80, 20);
this.comboBox1.TabIndex = 8;
this.comboBox1.Text = "Action 1";
//
// Form1
//
this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
this.ClientSize = new System.Drawing.Size(519, 476);
this.Controls.Add(this.comboBox1);
this.Controls.Add(this.btnClose);
this.Controls.Add(this.btnStop);
this.Controls.Add(this.btnStart);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
}
#endregion
/// <summary>
/// 茼蚚最唗腔翋諳萸﹝
/// </summary>
[STAThread]
static void Main()
{
Application.Run(new Form1());
}
private void StartDrawing()
{
while(true)
{
this.comboBox1.Text = this.comboBox1.SelectedItem.ToString();
int width = 10;
int high = 10;
Graphics g = this.CreateGraphics();
System.Drawing.Drawing2D.LinearGradientBrush myBrush = new System.Drawing.Drawing2D.LinearGradientBrush(ClientRectangle,Color.Gray, Color.Gray, System.Drawing.Drawing2D.LinearGradientMode.Vertical);
System.Drawing.Drawing2D.LinearGradientBrush myBrush2 = new System.Drawing.Drawing2D.LinearGradientBrush(ClientRectangle,Color.Red, Color.Red, System.Drawing.Drawing2D.LinearGradientMode.Vertical);
if(this.comboBox1.Text.Equals("Action 1"))
{
for(int y = 10;y<470;y=y+10)
{
for(int x = 170; x<310;x = x+10)
{
g.FillEllipse(myBrush,x,y,width,high);
g.FillEllipse(myBrush,y,x,width,high);
System.Threading.Thread.Sleep(1);
}
}
//System.Threading.Thread.CurrentThread.Join(1000);
Thread.Sleep(1000);
}
else
{
for(int y = 460;y>=10;y=y-10)
{
for(int x =300; x>160;x = x-10)
{
g.FillEllipse(myBrush2,x,y,width,high);
g.FillEllipse(myBrush2,y,x,width,high);
System.Threading.Thread.Sleep(1);
}
}
//System.Threading.Thread.CurrentThread.Join(1000);
Thread.Sleep(1000);
}
}
}
private void btnStart_Click(object sender, System.EventArgs e)
{
if(m_thread == null)
{
m_thread = new Thread(new ThreadStart(StartDrawing));
m_thread.Start();
}
else
{
if((int)m_thread.ThreadState == 96||(int)m_thread.ThreadState==97||(int)m_thread.ThreadState==6||(int)m_thread.ThreadState==7)
m_thread.Resume();
}
}
private void btnStop_Click(object sender, System.EventArgs e)
{
if(m_thread != null)
{
//if((int)m_thread.ThreadState == 96||(int)m_thread.ThreadState==97||(int)m_thread.ThreadState==6||(int)m_thread.ThreadState==7)
m_thread.Suspend();
}
}
private void btnClose_Click(object sender, System.EventArgs e)
{
Close();
}
}
}
[/CODE]