This is a migrated thread and some comments may be shown as answers.

Tab Alternate?

3 Answers 146 Views
Tabstrip (obsolete as of Q2 2010)
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
meraj
Top achievements
Rank 1
meraj asked on 18 Jan 2011, 07:37 AM
Hi,
Which control should i use in place of Tab,Because Tab control is obsolete in 2010.

3 Answers, 1 is accepted

Sort by
0
Accepted
Nikolay
Telerik team
answered on 18 Jan 2011, 08:39 AM
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.
0
meraj
Top achievements
Rank 1
answered on 18 Jan 2011, 09:39 AM
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.
0
Accepted
Ivan Petrov
Telerik team
answered on 20 Jan 2011, 02:20 PM
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.
Tags
Tabstrip (obsolete as of Q2 2010)
Asked by
meraj
Top achievements
Rank 1
Answers by
Nikolay
Telerik team
meraj
Top achievements
Rank 1
Ivan Petrov
Telerik team
Share this question
or