Pivot.RightHeaderTemplate Property

Definition

Gets or sets the template for the header on the control's right side.

DataTemplate RightHeaderTemplate();

void RightHeaderTemplate(DataTemplate value);
public DataTemplate RightHeaderTemplate { get; set; }
var dataTemplate = pivot.rightHeaderTemplate;
pivot.rightHeaderTemplate = dataTemplate;
Public Property RightHeaderTemplate As DataTemplate
<Pivot RightHeaderTemplate="resourceReferenceToDataTemplate"/>
- or -
<Pivot>
  <Pivot.RightHeaderTemplate>
     <DataTemplate>
      dataTemplateDefinition
    </DataTemplate>
  </Pivot.RightHeaderTemplate>
</Pivot>

Property Value

The template for the header on the control's right side.

Applies to