Question
How to hide the navigation bar in a WPF page
I want to hide the navigation bar in a page created using WPF. I have tried ShowsNavigationUI = false
, but it is still displaying the control.
45 63657
45
Question
I want to hide the navigation bar in a page created using WPF. I have tried ShowsNavigationUI = false
, but it is still displaying the control.
Solution
Specify to the page Container, the intention to not have a navigation bar, using
NavigationUIVisibility
property.
<Frame NavigationUIVisibility="Hidden" Panel.ZIndex="1" ... />
Solution
It's a very easy implementation.
<Frame x:Name="_FrameName" NavigationUIVisibility="Hidden" />