Windows.UI.Xaml.Controls.ListViewBase.Footer
June 22, 2022 ยท View on GitHub
-description
Gets or sets the content for the list footer.
-xaml-syntax
<listViewBase Footer="footerString"/>
- or -
<listViewBase>
<listViewBase.Footer>
footerObject
</listViewBase.Footer>
</listViewBase>
-xaml-values
- footerString
- footerStringA text string that serves as footer content.
- footerObject
- footerObjectAn single object element that serves as footer content. Use discretion when using objects as footer content; not all objects are suitable for use within the limited presentation surface that appears for footers.
-remarks
By default, the footer is shown at the bottom for a ListView, and on the right for a GridView. If the FlowDirection property is set to RightToLeft, the footer is shown on the left for a GridView.
You can use a data template for the footer by setting the FooterTemplate property.