ListViewBase.Footer Property
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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);
C#
public object Footer { get; set; }
var object = listViewBase.footer;
listViewBase.footer = object;
Public Property Footer As Object
XAML
<listViewBase Footer="footerString"/>
- or -
<listViewBase>
<listViewBase.Footer>
footerObject
</listViewBase.Footer>
</listViewBase>
The content of the list footer. The default is null.
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.
Product | Versions |
---|---|
Windows App SDK | 0.8, 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6 |