ListViewBase.Footer Property

Definition

Gets or sets the content for the list footer.

public:
 property Platform::Object ^ Footer { Platform::Object ^ get(); void set(Platform::Object ^ value); };
IInspectable Footer();

void Footer(IInspectable value);
public object Footer { get; set; }
var object = listViewBase.footer;
listViewBase.footer = object;
Public Property Footer As Object
<listViewBase Footer="footerString"/>
- or -
<listViewBase>
  <listViewBase.Footer>
    footerObject
  </listViewBase.Footer>
</listViewBase>

Property Value

Object

Platform::Object

IInspectable

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

See also