2014年3月16日

C#跨线程访问控件

摘要: public delegate void MyInvoke(string str);private void button9_Click(object sender, EventArgs e) { //_myInvoke = new MyInvoke(SetText); //CheckForIllegalCrossThreadCalls = false; Thread t = new Thread(new ThreadStart(fun)); t.Start(); } ... 阅读全文

posted @ 2014-03-16 23:14 BCodeSoft 阅读(203) 评论(0) 推荐(0)

导航