tags:

views:

289

answers:

2

F1- F12

And Ctrl + R

and how to detect enter key in my textbox in keypress

can someone example me please

A: 

This depends on the UI framework you're using. WinForms and WPF both have keyboard handling event handlers which you can use for this; you can register these per-window and often even per-control.

Intellisense is your friend...

Eamon Nerbonne
+1  A: 

How to trap keystrokes in controls by using Visual C#
http://support.microsoft.com/kb/320584

Robert Harvey