NavigationView.PaneCustomContent 属性

定义

获取或设置在 NavigationView 窗格中显示的 UI 元素。

适用于 UWP 的等效 WinUI 2 APIWindows 应用 SDK中用于 WinUI 的 Microsoft.UI.Xaml.Controls.NavigationView.PaneCustomContent (,请参阅 ) Windows 应用 SDK命名空间

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

void PaneCustomContent(UIElement value);
public UIElement PaneCustomContent { get; set; }
var uIElement = navigationView.paneCustomContent;
navigationView.paneCustomContent = uIElement;
Public Property PaneCustomContent As UIElement

属性值

在 NavigationView 窗格中显示的元素。

Windows 要求

设备系列
Windows 10, version 1809 (在 10.0.17763.0 中引入)
API contract
Windows.Foundation.UniversalApiContract (在 v7.0 中引入)

注解

PaneCustomContent 属性采用单个 UIElement。 这通常是包含其他元素的布局面板,例如 Grid 或 StackPanel。

适用于