ListViewBase.Footer 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置列表页脚的内容。
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>
属性值
列表页脚的内容。 默认值为 null。
注解
默认情况下,页脚显示在 ListView 的底部, GridView 的右侧显示。 如果 FlowDirection 属性设置为 RightToLeft,则 GridView 的左侧会显示页脚。
可以通过设置 FooterTemplate 属性,为页脚使用数据模板。