C# is different than VB.NEt when it comes to handling events. You actually have to write the code for creating the Event Handler for the events. Check if youhave this statement in your code for InitializeComponent
Code:
this.textBox1.KeyPress += new System.EventHandler(this.textBox1_KeyPress);
Or else select the text box in design mode, press F4 and in the Properties window select the lightning icon in the toll bar, this will show the events, double click the KeyPress and it will automatically create the event handler for you.
Use [code] source code here[/code] tags when you post source code.
Further to what Shuja Ali posted, if you already have the method written then you can select it from the drop-down list for the desired event in the Properties window.