다음을 통해 공유


NavigationView.PaneFooter 속성

정의

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

UWP에 해당하는 WinUI 2 API: Microsoft.UI.Xaml.Controls.NavigationView.PaneFooter(Windows 앱 SDK WinUI의 경우 Windows 앱 SDK 네임스페이스 참조).

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

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

속성 값

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

설명

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

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

적용 대상