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
1590
UltraTabControlStyle.Wizard
posted

Hi, all.

I want to use UltraTabControl with style UltraTabControlStyle.Wizard . I tried to analyse this ability. I put control with style UltraTabControlStyle.Wizard to my form, added 3 tabs. But I dont see the "next/previous" button. Should I add these button myself or there is some propreties that need to be setuped to achieve this functionality?How should I switch between tabs? I tried to find the samples related with UltraTabControlStyle.Wizard in Online Help but i do not find anything. Could you provide me with samples? 

Thanks in advance. 

 

Parents
  • 44743
    posted

    With the Wizard style tab control, you must implement your own next and previous buttons. The event handlers of these buttons can call these methods:

    this.ultraTabControl1.PerformAction(Infragistics.Win.UltraWinTabControl.UltraTabControlAction.SelectNextTab);

    this.ultraTabControl1.PerformAction(Infragistics.Win.UltraWinTabControl.UltraTabControlAction.SelectPreviousTab);

    to select the nex or previous tabs, respectively. I would recommend adding these buttons to the shared controls page so they appear on each page of the wizard.

Reply Children
No Data