Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.48 KB

listviewbase_footertemplate.md

File metadata and controls

41 lines (32 loc) · 1.48 KB
-api-id -api-type
P:Microsoft.UI.Xaml.Controls.ListViewBase.FooterTemplate
winrt property

Microsoft.UI.Xaml.Controls.ListViewBase.FooterTemplate

-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