ListViewBase.Footer Property

Definition

Gets or sets the content for the list footer.

C#
public object Footer { get; set; }
XAML
<listViewBase Footer="footerString"/>
- or -
<listViewBase>
  <listViewBase.Footer>
    footerObject
  </listViewBase.Footer>
</listViewBase>

Property Value

Object

The content of the list footer. The default is null.

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.

Applies to

Product Versions
Windows App SDK 0.8, 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6

See also