当前位置:编程学习 > C#/ASP.NET >>

使用C#多线程设计的电脑摇奖程序

简单的一个小程序,代码如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Threading;

namespace exe_thread1
{
    public partial class Form2 : Form
    {
        public Form2()
        {
            InitializeComponent();
        }

        //号码字符串
        string[] str = { "15131254154", "15251247858", "15651244567",
                         "15344547254", "1551247732",  "15661242345",
                         "15461237356", "15761247611", "15873457954",
                         "15571247357", "15071247430", "15571678004",
                         "15611247553" };

        //随机产生号码
        Random r = new Random();

        //记录字符串下标
        int i;

        //定义线程
        Thread myThread;

        //线程方法
        private void Thread()
        {
            while (true)
            {
                this.SetText();
            }
       
        }


        private void button1_Click(object sender, EventArgs e)
        {
            //实例化线程
            myThread = new Thread(new ThreadStart (this.Thread));

            //开始线程
            myThread.Start();
         }

        //定义委托
        delegate void SetTextCallback();


        //委托的方法
        private void SetText()
        {
            if (this.textBox1.InvokeRequired)
            {
                SetTextCallback d = new SetTextCallback(SetText);

                this.Invoke(d, new object[] { });
            }
            else
            {

                i = r.Next(str.Length );

                this.textBox1.Text =str [i ] ;
                   
               
            }
        }   

        private void button2_Click(object sender, EventArgs e)
        {

            //结束线程
            myThread.Abort();

            MessageBox.Show("恭喜您得奖了!");

        }
    }
}

    
补充:软件开发 , C# ,
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,