G
Guest
when i double-click on a button on a form as i am designing the form, the IDE
creates a method corresponding to a event assignment as follows:
this eventhandler: this.exitToolStripMenuItem.Click += new
System.EventHandler(this.exitToolStripMenuItem_Click);
is paired with: private void exitToolStripMenuItem_Click(object sender,
EventArgs e) {}
How do/Can I what the EventArgs are?
creates a method corresponding to a event assignment as follows:
this eventhandler: this.exitToolStripMenuItem.Click += new
System.EventHandler(this.exitToolStripMenuItem_Click);
is paired with: private void exitToolStripMenuItem_Click(object sender,
EventArgs e) {}
How do/Can I what the EventArgs are?