Skip to main content

DXTabControl.ItemHeaderTemplate Property

Gets or sets a template representing the visual appearance of the tab items' headers when the tab control displays data from a bound data source. This is a dependency property.

Namespace: DevExpress.Xpf.Core

Assembly: DevExpress.Xpf.Core.v14.2.dll

#Declaration

public DataTemplate ItemHeaderTemplate { get; set; }

#Property Value

Type Description
DataTemplate

A DataTemplate object representing the visual appearance of the tab items' headers.

#Remarks

A template used to represent the visual appearance of the tab items' content in the data bound mode is specified by the ItemTemplate property.

To bind the TabControl to a data source, use the ItemsSource property. When the control is not bound to a data source, templates that define visual presentation of tab items and their headers are specified individually for each item. For instance, a template representing the item's header is specified via the DXTabItem.HeaderTemplate property.

See Also