ItemsPresenter.FooterTemplate 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 DataTemplate used to display the content of the items header.
DataTemplate FooterTemplate();
void FooterTemplate(DataTemplate value);
public DataTemplate FooterTemplate { get; set; }
var dataTemplate = itemsPresenter.footerTemplate;
itemsPresenter.footerTemplate = dataTemplate;
Public Property FooterTemplate As DataTemplate
<ItemsPresenter>
<ItemsPresenter.FooterTemplate>
singleDataTemplate
</ItemsPresenter.FooterTemplate>
</ItemsPresenter>
- or -
<ItemsPresenter FooterTemplate="resourceReferenceToDataTemplate"/>
Property Value
The template that specifies the visualization of the header object. The default is null.