标签:event pre his reads delegate ext app handler div
//1. this.Invoke(new ThreadStart(delegate { textBox1.AppendText("11111" + "\r\n"); })); //2. this.Invoke(new MethodInvoker(delegate { textBox1.AppendText("11111" + "\r\n"); })); //3. this.Invoke(new Action( () => { textBox1.AppendText("11111" + "\r\n"); })); //4. this.Invoke(new EventHandler(delegate { textBox1.AppendText("11111" + "\r\n"); }));
标签:event pre his reads delegate ext app handler div
原文地址:http://www.cnblogs.com/wangyinlon/p/6287605.html