ItemsPresenter.Footer Property
Definition
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 items 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 = itemsPresenter.footer;
itemsPresenter.footer = object;
Public Property Footer As Object
<ItemsPresenter Footer="footerString"/>
- or -
<ItemsPresenter>
<ItemsPresenter.Footer>footerObject</ItemsPresenter.Footer>
</ItemsPresenter>
Property Value
The content of the items footer. The default is null.
Remarks
You can set a data template for the Footer by using the FooterTemplate property.