Delegate EventHandler
Represents the method that will handle an event that has no event data.
Namespace: System
Assembly: mscorlib.dll
Syntax
public delegate void EventHandler(object sender, EventArgs e);
Parameters
Type | Name | Description |
---|---|---|
Object | sender | The source of the event. |
EventArgs | e | An object that contains no event data. |