Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / WinForms > Tabstrip (obsolete as of Q2 2010) > Tab Alternate?

Answered Tab Alternate?

Feed from this thread
  • meraj avatar

    Posted on Jan 18, 2011 (permalink)

    Hi,
    Which control should i use in place of Tab,Because Tab control is obsolete in 2010.

    Reply

  • Answer Nikolay Nikolay admin's avatar

    Posted on Jan 18, 2011 (permalink)

    Hello meraj,

    You should use RadPageView instead of RadTabStrip. For additional information about RadPageView, please refer to this article.

    All the best,
    Nikolay
    the Telerik team
    Q3’10 SP1 of RadControls for WinForms is available for download; also available is the Q1'11 Roadmap for Telerik Windows Forms controls.

    Reply

  • meraj avatar

    Posted on Jan 18, 2011 (permalink)

    Thank for your support,
    one more question is that how to customize tab size in pageview for stripview.
    i want to set the different size of tab.

    Reply

  • Answer Ivan Petrov Ivan Petrov admin's avatar

    Posted on Jan 20, 2011 (permalink)

    Hi meraj,

    Thank you for getting back to us.

    You can manipulate the tabs size through the theme you are applying to the RadPageView or through code.
    If you use code, you can use the following snippet to set the padding of the tabs which will result in a different size:
    Padding newPadding = new Padding(20);
     
    foreach (RadPageViewPage page in this.radPageView1.Pages)
    {
       page.Item.Padding = newPadding;
    }

    If you choose to change the padding through the theme, you have to navigate to:
    RadPageView>>RadPageViewStripElement>>StripViewItemLayout>>RadPageViewStripItem.
    You can look at the attached screenshot to get a better idea of which property I am writing about.

    I hope this will help you out. If you have further questions, I would be happy to assist you.

    Best wishes,
    Ivan Petrov
    the Telerik team
    Q3’10 SP1 of RadControls for WinForms is available for download; also available is the Q1'11 Roadmap for Telerik Windows Forms controls.

    Reply

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / WinForms > Tabstrip (obsolete as of Q2 2010) > Tab Alternate?