In a standard WinForms application, is it possible to have a scenario like the following and how would I do it:
A form with four textbox controls, arranged on the form from top to bottom:
- TextBox1
- TextBox2
- TextBox3
- TextBox4
The desired behavior is that when the form loads, the focus is on TextBox3, but when tabbing out, the focus goes to the top and goes through all controls as normal, in the following way:
- TextBox3
- TextBox1
- TextBox2
- TextBox3
- TextBox4