摘要:
form1是用来接收值的 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using S 阅读全文
摘要:
1、定义委托类型 [访问修饰符]delegate 返回类型 委托名(形参); 2、声明委托对象 委托名 委托实例名; 3、创建委托对象(确定与哪些方法进行绑定) 委托实例名=new 委托名(某个类的方法) 4、使用委托调用方法 委托实例名(实参) 委托注意事项: 1、委托和方法必须具有相同的参数。 阅读全文
摘要:
1.invoke是同步线程 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using 阅读全文
摘要:
1 1.system.windows.forms 2 3 2.system.threading.timer 4 5 3.system.timers.timer 6 7 8 9 using System; 10 using System.Collections.Generic; 11 using System.ComponentModel; 12 using Sys... 阅读全文