New to Telerik UI for WPFStart a free 30-day trial

The panel used for arranging the TabItems of the TabStrip in the TabControl.

Definition

Namespace:Telerik.Windows.Controls.Primitives

Assembly:Telerik.Windows.Controls.Navigation.dll

Syntax:

C#
public class TabStripPanel : Panel

Inheritance: objectTabStripPanel

Derived Classes: TabWrapPanel

Constructors

C#
public TabStripPanel()

Fields

AlignProperty

DependencyProperty

Identifies the Align property.

C#
public static readonly DependencyProperty AlignProperty

AllTabsEqualHeightProperty

DependencyProperty

Identifies the AllTabsEqualHeight property.

C#
public static readonly DependencyProperty AllTabsEqualHeightProperty

RearrangeTabsProperty

DependencyProperty

Identifies the RearrangeTabs property.

C#
public static readonly DependencyProperty RearrangeTabsProperty

TabStripPlacementProperty

DependencyProperty

Identifies the TabStripPlacement property.

C#
public static readonly DependencyProperty TabStripPlacementProperty

Properties

Gets or sets the align of the items.

C#
public TabStripAlign Align { get; set; }

Gets or sets a value indicating whether all tabs should be of equal height.

C#
public bool AllTabsEqualHeight { get; set; }

Gets or sets a value indicating whether the selected item should be closest to the contents.

C#
public bool RearrangeTabs { get; set; }

Gets or sets a value indicating where TabStrip is position with regard to its content.

C#
public Dock TabStripPlacement { get; set; }

Methods

When implemented in a derived class, provides the behavior for the "Arrange" layout pass.

C#
protected override Size ArrangeOverride(Size finalSize)
Parameters:finalSizeSize

The final area within the parent that this element should use to arrange itself and its children.

Returns:

Size

The actual size used.

When implemented in a derived class, provides the behavior for the "Measure" layout pass.

C#
protected override Size MeasureOverride(Size availableSize)
Parameters:availableSizeSize

The available size that this element can give to child elements. Infinity can be specified as a value to indicate that the element will size to whatever content is available.

Returns:

Size

The size that this element determines it needs during layout, based on its calculations of child element sizes.