I have a mdi parent form and a logon form (among others)

I'm trying to create an event that will be triggered from the logon form when the users "logon"

the code i have so far is

in the logon form

c# Code:
  1. public event EventHandler Authenticated;

and in the main form


c# Code:
  1. logon newForm = new logon();
  2.             newForm.Authenticated += new EventHandler(?????????);
  3.             newForm.MdiParent = this;


my two questions are

1) what should i put under the event handler and (makred in ???)
2) and how would i create a "stub" for it in the main form

i.e
c# Code:
  1. private void ???????(object sender, EventArgs e)
  2.         {
  3.            
  4.         }


thanks if you can point me in the right direction