NavigationView.PaneHeader Property

Definition

Gets or sets the content for the pane header.

Equivalent WinUI 2 API for UWP: Microsoft.UI.Xaml.Controls.NavigationView.PaneHeader (for WinUI in the Windows App SDK, see the Windows App SDK namespaces).

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

void PaneHeader(UIElement value);
public UIElement PaneHeader { get; set; }
var uIElement = navigationView.paneHeader;
navigationView.paneHeader = uIElement;
Public Property PaneHeader As UIElement
<NavigationView>
  <NavigationView.PaneHeader>
    headerElement
  </NavigationView.PaneHeader>
</NavigationView>

Property Value

The content of the pane header. The default is null.

Windows requirements

Device family
Windows 10, version 1809 (introduced in 10.0.17763.0)
API contract
Windows.Foundation.UniversalApiContract (introduced in v7.0)

Remarks

The PaneHeader property takes a single UIElement, which can be a layout panel that contains additional elements.

Applies to