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
1622
Disable Tabs in Manager
posted

Hello,

We have an application where we would like to disable selecting a different tab at certain points during the application.  I know you can hide the tabs by setting the tabstyle to wizard, but i would like them to just be disabled, not hidden.  Thanks for your time

-Chris

Parents
  • 71886
    Offline posted

    Hello,

    If you want the end-user to not be able to select certain tabs you could hook to the 'TabSelecting' event and cancel it:

            private void ultraTabbedMdiManager1_TabSelecting(object sender, Infragistics.Win.UltraWinTabbedMdi.CancelableMdiTabEventArgs e)
            {
                e.Cancel = true;
            }
    

     Please feel free to let me know if I misunderstood you or if you have any other questions.

Reply Children
No Data