我想知道Invoke(委托)方法.我不明白为什么我不需要指定参数.如果我需要他们供应怎么办.在下面你更好地理解我的意思.谢谢 EventHandler a = new EventHandler(this.A); Invoke(a); //where doest it take t
EventHandler a = new EventHandler(this.A); Invoke(a); //where doest it take the arguments from? a(); //does not work, missing arguments由于Invoke旨在用于Windows窗体,并且此处使用的事件模式已明确指定,因此Invoke方法可以进行有根据的猜测.实际上,如果你尝试使用Invoke调用不带参数的EventHandler,那么 it is documented on MSDN正是它的作用:
The delegate can be an instance of EventHandler, in which case the
sender parameter will contain this control, and the event parameter
will contain EventArgs.Empty.
您可以而且应该使用Invoke的重载,它允许您指定代理的参数,以使其更明确地发生了什么.此外,调用不带参数数组的Invoke只适用于EventHandler类型的委托(当然,也可以是首先不接受任何参数的委托).