Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 1.15 KB

pivot_leftheadertemplate.md

File metadata and controls

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

Windows.UI.Xaml.Controls.Pivot.LeftHeaderTemplate

-description

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

-xaml-syntax

<Pivot LeftHeaderTemplate="resourceReferenceToDataTemplate"/>
- or -
<Pivot>
  <Pivot.LeftHeaderTemplate>
     <DataTemplate>
      dataTemplateDefinition
    </DataTemplate>
  </Pivot.LeftHeaderTemplate>
</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 left side.

-remarks

-examples

-see-also