Share via


ItemsPresenter.FooterTemplate Property

Definition

Overloads

FooterTemplate

Gets or sets the DataTemplate used to display the content of the items header.

FooterTemplate

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