摘要: public delegate void MyInvoke( ); public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { Thread th = new Thread(new ThreadStart(correctfunc)); t... 阅读全文
posted @ 2014-01-02 17:12 UCanBeFree 阅读(161) 评论(0) 推荐(0)