Skip to main content

DXTabControl.LayoutRightTemplate Property

Gets or sets a template applied to the DXTabControl when the Header Panel is located on the right side of the tab item. This is a dependency property.

Namespace: DevExpress.Xpf.Core

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

#Declaration

public ControlTemplate LayoutRightTemplate { get; set; }

#Property Value

Type Description
ControlTemplate

A ControlTemplate object representing the DXTabControl's template.

#Remarks

The DXTabControl's appearance is defined by four templates: DXTabControl.LayoutBottomTemplate, DXTabControl.LayoutLeftTemplate, DXTabControl.LayoutRightTemplate and DXTabControl.LayoutTopTemplate. Which of them is applied depends on the location of the Header Panel. For instance, if the panel is located on the right side of the control, the template specified by the DXTabControl.LayoutRightTemplate property is applied.

To learn more, see DXTabControl Overview.

See Also