多线程的使用

来源:互联网 发布:对妹妹做过什么 知乎 编辑:程序博客网 时间:2024/06/05 16:26
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 WindowsFormsApplication5
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        Thread t;
        private void button1_Click(object sender, EventArgs e)
        {
            Thread t = new Thread(test);
            t.IsBackground = true;
            t.Start();
        }
        private void test()
        {
            for (int i = 0; i < 10000;i++ )
            {
               // Console.WriteLine(i);
                textBox1.Text = i.ToString();
            }
        }
        
        private void Form1_Load(object sender, EventArgs e)
        {
            //取消跨线程的访问
            Control.CheckForIllegalCrossThreadCalls = false;
        }


        private void Form1_FormClosing(object sender, FormClosingEventArgs e)
        {
            if (t != null)
            {
                t.Abort();
            }
        }
        
        
    }
}
0 0
原创粉丝点击