2013年3月16日

摘要: 原始版本: 1 private delegate void Deleagte_Void(); 2 3 4 private void NewThreadFunction() 5 6 { 7 8 Delegate_Void newDelegate = new Delegate_Void( this.Tasks ); 9 10 this.Invoke( newDelegate );11 12 }13 14 15 private void Tasks()16 17 {18 19 this.textBox.Text += "x";20 21 }进化版:1 private ... 阅读全文
posted @ 2013-03-16 14:37 xxxteam 阅读(1304) 评论(1) 推荐(0) 编辑

导航