Is there a quick way to modify tabindexes in a form with lots of controls?

So, I have a form with a lot of controls that have a tab index.

After entering some additional fields, I need to edit the index of all controls after new ones.

Is there an easy way to automate this in Visual Studio, or is there some kind of plugin?

+6
visual studio
source share
3 answers

Assuming you're talking about the Windows Forms interface. You can click β€œMenu”: β€œView | Tab Order, and then just click on the controls on which you want the tab order to be selected. It seems that nothing looks like the web interface in Visual Studio.

+13
source share

Take a tabindex step of 5 or 10, then if you introduce new controls you don't have this problem.

+2
source share
0
source share

All Articles