NavigationView.Header Property

Definition

Gets or sets the header content.

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

public:
 property Platform::Object ^ Header { Platform::Object ^ get(); void set(Platform::Object ^ value); };
IInspectable Header();

void Header(IInspectable value);
public object Header { get; set; }
var object = navigationView.header;
navigationView.header = object;
Public Property Header As Object
<NavigationView Header="headerString"/>
- or -
<NavigationView>
  <NavigationView.Header>
    headerObject
  </NavigationView.Header>
</NavigationView>

Property Value

Object

Platform::Object

IInspectable

The header content for the NavigationView.

Applies to