Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 1.16 KB

pivot_rightheadertemplate.md

File metadata and controls

42 lines (31 loc) · 1.16 KB
-api-id -api-type
P:Windows.UI.Xaml.Controls.Pivot.RightHeaderTemplate
winrt property

Windows.UI.Xaml.Controls.Pivot.RightHeaderTemplate

-description

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

-xaml-syntax

<Pivot RightHeaderTemplate="resourceReferenceToDataTemplate"/>
- or -
<Pivot>
  <Pivot.RightHeaderTemplate>
     <DataTemplate>
      dataTemplateDefinition
    </DataTemplate>
  </Pivot.RightHeaderTemplate>
</Pivot>

-xaml-values

resourceReferenceToDataTemplate
resourceReferenceToDataTemplateA resource reference to an existing DataTemplate from a resources collection. The resource reference must specify the desired DataTemplate by key through a {StaticResource} markup extension usage.
dataTemplateDefinition
dataTemplateDefinitionDefinition for the DataTemplate, including its root element container and parts within that present the data-based content.
## -property-value The template for the header on the control's right side.

-remarks

-examples

-see-also