OKay, quick question.
Make a windows forms app, in C#. Add a ToolStrip, in the tool strip create a textbox. Now here is the problem. Put the breakpoint on the event KeyPress or any other key event.
Run it, Press Escape key. No event is triggered.
Now the Escape key remove the focus from the textbox (you dont see the cursor inside the box). But no event is triggered for KeyChar 27 or Keys.Escpae. Why? Is this a bug?