You can ignore this one.
All events have the same signature: void handler(object sender, XxxEventArgs e)
Some events have more information and use a class derived from System.EventArgs for the second parameter.
For instance:
private void MainForm_KeyPress(object sender, KeyPressEventArgs e)
{
char ch = e.KeyChar;
....
}
source
share