NavigationView.PaneFooter 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
창 바닥글의 콘텐츠를 가져오거나 설정합니다.
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에 배치할 수 있지만 NavigationView에 대한 선택 모델에 참여하지 않으므로 NavigationViewItems를 배치하면 안 됩니다. 이를 클릭하면 NavigationView.SelectionChanged 이벤트가 발생하지 않습니다.
PaneFooter에 NavigationViewItem 을 배치하면 NavigationView.ItemInvoked 이벤트가 발생하지 않습니다. ItemInvoked 이벤트는 NavigationViewItem이 NavigationView.MenuItems 또는 NavigationView.FooterMenuItems 컬렉션에 있는 경우에만 발생합니다.
PaneFooter는 탐색 창의 끝에 있지만 FooterMenuItems 앞에 배치됩니다.