ItemsPresenter.FooterTemplate Property

Definition

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.

Applies to