就不写那么复杂了,也不说为什么了。 private void button9_Click(object sender, EventArgs e) { new Thread(Check).Start(); } public void Check() { lock(this) Invoke(new MethodInvoker(delegate() { txtContent.Text = "线程起作用了!"; ... Read More
posted @ 2013-04-10 10:50 Archosaur Views(2257) Comments(1) Diggs(0) Edit