3 Answers, 1 is accepted
0
Accepted
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
You should use RadPageView instead of RadTabStrip. For additional information about RadPageView, please refer to this article.
All the best,
Nikolay
the Telerik team
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.
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
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:
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
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