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,但不应将 NavigationViewItems 放入其中,因为它们不会参与 NavigationView 的选择模型 - 单击它们不会引发 NavigationView.SelectionChanged 事件。
如果将 NavigationViewItem 放置在 PaneFooter 中,它不会引发 NavigationView.ItemInvoked 事件。 仅当 NavigationViewItem 位于 NavigationView.MenuItems 或 NavigationView.FooterMenuItems 集合中时,才会引发 ItemInvoked 事件。
PaneFooter 位于导航窗格的末尾,但位于 FooterMenuItems 之前。