ListViewBase.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 view footer.
DataTemplate FooterTemplate();
void FooterTemplate(DataTemplate value);
public DataTemplate FooterTemplate { get; set; }
var dataTemplate = listViewBase.footerTemplate;
listViewBase.footerTemplate = dataTemplate;
Public Property FooterTemplate As DataTemplate
<listViewBase FooterTemplate="resourceReferenceToDataTemplate"/>
- or -
<listViewBase>
<listViewBase.FooterTemplate>
<DataTemplate>
dataTemplateDefinition
</DataTemplate>
</listViewBase.FooterTemplate>
</listViewBase>
Property Value
The template that specifies the visualization of the footer object. The default is null.