i want to get keypress event in windows panel control in c#, is any body help for me...
The problem is, that at first your main form got the KeyPress and will immediately send this message to the active control. If that doesn't handle this key press it will be bubbled up to the parent control and so on.
To intercept this chain, you have to in your Form.KeyPreview
to true
and add an handler to Form.KeyPress
. Now you can handle the pressed key within your form.