I have a user control. Inside the user control there is a PictureBox that uses all the properties of the screen (Dock.Fill). I would like to catch keyboard events (e.g. Ctrl-V to implement Paste functionality).
However, there are no key events in the PictureBox. Will the next layer under the PictureBox (i.e. the User Control) receive the KeyUp event? If I add a KeyUp event handler to the user control, will it work? I know that WPF has a routed event solution. How does it work in the world of winforms?
source share