NavigationView.PaneFooter 속성

정의

창 바닥글의 콘텐츠를 가져오거나 설정합니다.

이 설명서는 UWP용 WinUI 2에 적용됩니다(Windows App SDKWinUI의 경우 Windows App SDK 네임스페이스 참조).

public:
 property UIElement ^ PaneFooter { UIElement ^ get(); void set(UIElement ^ value); };
UIElement PaneFooter();

void PaneFooter(UIElement value);
public UIElement PaneFooter { get; set; }
Public Property PaneFooter As UIElement
<NavigationView>
  <NavigationView.PaneFooter>
    footerElement
  </NavigationView.PaneFooter>
</NavigationView>

속성 값

창 바닥글의 내용입니다. 기본값은 null입니다.

설명

PaneFooter 속성은 추가 요소가 포함된 레이아웃 패널일 수 있는 단일 UIElement를 사용합니다.

PaneFooter에 콘텐츠를 배치할 수 있지만 NavigationViewItems는 NavigationView의 선택 모델에 참여하지 않으므로 해당 콘텐츠에 배치하면 안 됩니다. 콘텐츠를 클릭하면 NavigationView.SelectionChanged 이벤트가 발생하지 않습니다.

PaneFooter에 NavigationViewItem 을 배치하면 NavigationView.ItemInvoked 이벤트가 발생하지 않습니다. ItemInvoked 이벤트는 NavigationView.MenuItems 또는 NavigationView.FooterMenuItems 컬렉션에 NavigationViewItem 이 있는 경우에만 발생합니다.

PaneFooter는 탐색 창의 끝에 있지만 FooterMenuItems 앞에 배치됩니다.

적용 대상