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 屬性,為頁尾使用資料範本。

適用於

另請參閱