Assume you have a form with ten buttons on it with the first one having the keyboard focus so that it can be clicked by hitting the Enter key on the keyboard. Now, you can set the focus to the next button simply by pressing the Down arrow key. This works out of the box.
Question:
How can I constrain this functionality to the first three buttons on the form?
So, when the third button on the form has the focus and I press the Down arrow key, the first button - instead of the forth button - should receive the focus.
KeyUp
/KeyDown
events and add the logic yourself. – Anthony