I need to disable changing focus with arrows on form. Is there an easy way how to do it?
Thank you
You should set KeyPreview to true on the form. Handle the KeyDown/KeyUp/KeyPress event and set the e.Handled in the eventhandler to true for the keys you want to be ignored.
KeyPreview
KeyDown/KeyUp/KeyPress
e.Handled