How could I make a header on the top of NavigationView in Microsoft.UI.Xaml.Controls (UWP app) ?
I managed to make header using PaneHeader property, but I would like to have the graphic above the menu button.
<muxc:NavigationView.PaneHeader>
<Image Source="Resources/header.png" HorizontalAlignment="Center" Height="45"/>
</muxc:NavigationView.PaneHeader>
This is the result I have:
And this is what I expect:


It is recommended to use Title bar customization to get the effect you want. Add the image in the custom title bar.
MainPage.xaml
MainPage.xaml.cs
UPDATE