ListViewBase.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 = listViewBase.footer;
listViewBase.footer = object;
Public Property Footer As Object
<listViewBase Footer="footerString"/>
- or -
<listViewBase>
  <listViewBase.Footer>
    footerObject
  </listViewBase.Footer>
</listViewBase>

属性值

Object

Platform::Object

IInspectable

列表页脚的内容。 默认值为 null

注解

默认情况下,页脚显示在 ListView 的底部, GridView 的右侧显示。 如果 FlowDirection 属性设置为 RightToLeft,则 GridView 的左侧会显示页脚。

可以通过设置 FooterTemplate 属性,为页脚使用数据模板。

适用于

另请参阅