private void InitializeComponent()
{
this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.frm 1_keypress);
}

private void frm1_keypress(object sender, System.Windows.Forms.KeyPressEventArgs e)
{
MessageBox.Show(e.KeyChar.ToString());
}

Questo codice mostra una messagebox per ogni tasto che premi

Happy Programming!