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 プロパティを設定すると、フッターにデータ テンプレートを使用できます。

適用対象

こちらもご覧ください