I have a form with 3 panels, panels are formed because at certain times I see some groups' controls hidden I have so far, it works fine - as long as I was told a specific way of navigating the form with the tab key.
At first, I saw that there is no tabined property in the panel object and, most importantly, I do not want to follow the nested navigation algorithm, I just want to set my own sequence.
I have read online yet, this is not possible with the panel. My only option is to put all the controls on all panels in the same panel.
Any thoughts? I do not feel like re-arranging an app, and is showing and showing personal controls. Pressing the tab key will move the focus to the next control in the ControlCollection since the focus is always on the inside of a panel. Keeps in control and not in the panel, so how can you expect that a panel supports tabs index?
I suggest that you think again what you are trying to do. When a specific panel is visible, the tab should navigate around its controls. This tab does not seem to transfer you to the next panel. It is usually done with a button or some other control, the user expects that the tab transfers the focus and does not work. Also, if you want to move the tabs around the panels, then You have to set the tab stop property of all the controls to false.
Comments
Post a Comment