I have a Form with several special controls on it that is the main window of my application. I would like to capture all key presses while my application is running, at the form level, rather than on the focused control or anything like that. What is the standard way to do this in WinForms?
Share
set Form.PreviewKeys = true, then you get all keyboard event.