TabControl
Description
Usage
@if (this.Visible)
{
<div class="@(this.TabControl.GetStringClasses())">
<WMStyleBase [email protected]></WMStyleBase>
<TelerikTabStrip Class="@(this.GetAppearanceStringClass())"
Height="100%"
ActiveTabIndex="this.GetActiveTabIndex()"
ActiveTabIndexChanged="TabChangedHandler"
TabPosition="(TabPosition)this.TabControl.Alignment"
Scrollable="!this.TabControl.Multiline"
TabAlignment="this.GetTabAlignmentFromSizeMode()">
@ChildContent
</TelerikTabStrip>
<style>
.@(this.TabControl.GetComponentClass()) .k-item {
font-size: @this.TabControl.Font.GetFontSize();
font-weight: @this.TabControl.Font.GetFontWeight();
font-style: @this.TabControl.Font.GetFontStyle();
font-family: @this.TabControl.Font.GetFontFamily();
text-decoration: @this.TabControl.Font.GetTextDecoration();
}
.@(this.TabControl.GetComponentClass()) .k-item {
height: @this.GetItemSizeHeight();
width: @this.GetItemSizeWith();
}
.@(this.TabControl.GetComponentClass()) .k-tabstrip-items-wrapper > .k-button {
height: @this.GetItemSizeHeight();
}
</style>
</div>
}
Properties
Methods
Dynamic Rendering
Styles
Events
Last updated