摘要:
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Net.Sockets; 6 using System.Net; 7 using System.Threading; 8 9 namespac... 阅读全文
摘要:
if (listBox1.InvokeRequired) //当有新工作进程访问控件时InvokeRequired为True { MyInvoke myinvoke = new MyInvoke(SetListBoxValue); // 定义委托对象 里边的SetListBoxValue是个方法 l 阅读全文