NavigationView.PaneHeader Property

Definition

Gets or sets the content for the pane header.

This documentation applies to WinUI 2 for UWP (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);
/// [Microsoft.UI.Xaml.CustomAttributes.MUXPropertyChangedCallback(enable=false)]
/// [get: Microsoft.UI.Xaml.CustomAttributes.MUXPropertyChangedCallback(enable=false)]
/// [set: Microsoft.UI.Xaml.CustomAttributes.MUXPropertyChangedCallback(enable=false)]
UIElement PaneHeader();

void PaneHeader(UIElement value);
public UIElement PaneHeader { get; set; }
[Microsoft.UI.Xaml.CustomAttributes.MUXPropertyChangedCallback(enable=false)]
public UIElement PaneHeader { [Microsoft.UI.Xaml.CustomAttributes.MUXPropertyChangedCallback(enable=false)] get; [Microsoft.UI.Xaml.CustomAttributes.MUXPropertyChangedCallback(enable=false)] set; }
Public Property PaneHeader As UIElement
<NavigationView>
  <NavigationView.PaneHeader>
    headerElement
  </NavigationView.PaneHeader>
</NavigationView>

Property Value

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

Attributes
Microsoft.UI.Xaml.CustomAttributes.MUXPropertyChangedCallbackAttribute

Remarks

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

Applies to