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
20
Disabling tab selection
posted

I need to stop users selecting a tab and instead provide buttons on each tabpage so that they can move through the tabs pages in sequence. Is there a way to disable manual selection of the tabs (for instance by clicking on them)?

Parents
No Data
Reply
  • 0
    Offline posted

    If you use tabstrip

    foreach (var tab in tabStrip.Tabs)
    {
    tab.Enabled = false;
    }


    tabStrip.SelectedTab.Enabled = true;

Children
No Data