new System.Windows.Forms.MouseEventHandler(this.eventFunction)
the above sends an 'object sender' and 'MouseEventArgs e' to my event function. I need to send another object with it, but if I use:
System.Windows.Forms.MouseEventHandler(this.eventFunction(object, MouseEventArgs, objectINeed));
It doesn't work. It just says there is an invalid argument. Even if I blatantly send it an object, MouseEventArgs, object.
Can anyone provide any insight?