Windows.UI.Xaml.Controls.ListViewBase.FooterTemplate

June 22, 2022 ยท View on GitHub

-description

Gets or sets the DataTemplate used to display the content of the view footer.

-xaml-syntax

<listViewBase FooterTemplate="resourceReferenceToDataTemplate"/>
- or -
<listViewBase>
  <listViewBase.FooterTemplate>
     <DataTemplate>
      dataTemplateDefinition
    </DataTemplate>
  </listViewBase.FooterTemplate>
</listViewBase>

-xaml-values

singleDataTemplate
singleDataTemplateA single DataTemplate object element. That DataTemplate would typically have multiple child elements that define the visual appearance of the data representation.
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 that specifies the visualization of the footer object. The default is **null**.

-remarks

-examples

-see-also