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
1 Jan 1970

Solution

 106

Specify to the page Container, the intention to not have a navigation bar, using NavigationUIVisibility property.

<Frame NavigationUIVisibility="Hidden" Panel.ZIndex="1" ... />
2013-01-04

Solution

 41

It's a very easy implementation.

<Frame x:Name="_FrameName" NavigationUIVisibility="Hidden" />
2015-01-20