摘要: using System.Threading;namespace Threading{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } BackgroundWorker back = null; Thread thread = null; Form2 f2 = null; private void button1_Click(object sender, EventArgs e) { back = new BackgroundWorker(); back.Wor... 阅读全文
posted @ 2012-03-09 11:20 辣椒粉 阅读(1521) 评论(0) 推荐(0)