摘要: public delegate void OutDelegate(string text); public void OutText(string text) { if (listBox1.InvokeRequired) { OutDelegate outdelegate = new OutDelegate(OutText); this.BeginInvoke(outdelegate, new object[] { text }); ... 阅读全文
posted @ 2011-12-15 10:43 bule 阅读(371) 评论(0) 推荐(0) 编辑