Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
430
Wintoolbars and the TabIndex property
posted

Is any way to set the TabIndex for a Wintoolbar control?

It should be a way to navigate through its menus by keyboard only.

Parents
No Data
Reply
  • 71886
    Offline posted

    Hello BrownBlitz,

    Basically there is a way to navigate by the keyboard in the WinToolbarsManager control using shortcut keys. So you could use something similar to the following:

    ultraToolbarsManager1.Tools[0].SharedProps.Shortcut = Shortcut.Alt0;

    This way, when you press that key combination when the application is running it will select the tool it is assigned to.

    You would not be able to set TabIndex for this control, you could use the above approach to get such behavior.

    Please do not hesitate to contact us if you need any additional assistance.

Children
No Data