I don't know how to mention my problem. I have to show you in image:
As you can see, I want to change that. I know I have to change the text in Resources. But I want to change font family, Flow direction etc. On some Pages, I Don't want to show it AT ALL.
No codes required for this question. I don't have any! Just make a project with some pages in "Template Studio for WinUI 3". You will see the code. I'm looking for it for a long time. please answer if you know where should I look for it or what should I do. Thanks
I want to change font family, Flow direction etc.
You could try to change the value in the resources file to alter what is displayed in the NavigationView.
On some Pages, I Don't want to show it AT ALL.
The navigation pane projects add a Behavior to the NavigationView that allows different pages to customize or hide the Header when that page is shown.
HeaderMode
: allows you to choose when to display the Header on that page (Always, Minimal,Never), Always is the default value.If you want to hide the Header in some pages, you could set
HeaderMode="Never"
.For more details, I suggest you could refer to the Doc:NavigationViewHeaderBehavior