Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Dev Express Layout Control Tab Order not going in order of Visual Studio's noted tab order. How to fix?

I have a winform project that is using a devexpress layout control and I am using Visual Studio's tab order feature to set the tab order of the child controls in the layout control. However, at runtime only the first child control in the layout control is hit when I hit the tab key.

Has anyone run into this problem, and know how to fix it?

Thanks in advance.

like image 509
TheDevOpsGuru Avatar asked Jan 20 '23 06:01

TheDevOpsGuru


1 Answers

Set the LayoutControl.OptionsFocus.EnableAutoTabOrder property to false.

like image 171
DevExpress Team Avatar answered Jan 21 '23 19:01

DevExpress Team