Page::ShowsNavigationUI Property
Gets or sets a value that indicates whether the navigation UI of a NavigationWindow on Microsoft Internet Explorer 6 is visible.
Assembly: PresentationFramework (in PresentationFramework.dll)
Property Value
Type: System::Booleantrue if the navigation UI of a host NavigationWindow is visible; otherwise, false.
| Exception | Condition |
|---|---|
| InvalidOperationException | The ShowsNavigationUI property is inspected on a Page instance that is not hosted by a Window, NavigationWindow, or a browser. |
NavigationWindow displays navigation UI by default to enable browser-style forwards and backwards navigation. If a page is set as the StartupUri, Application automatically opens a NavigationWindow to host the page in. If the page does not want to use the default NavigationWindow navigation UI, it can set ShowsNavigationUI to false.
Note |
|---|
Because WPF does not integrate with the navigation UI for Microsoft Internet Explorer 6, it provides its own navigation UI, which can be shown or hidden by setting ShowsNavigationUI. WPF does integrate with the Windows Internet Explorer 7 navigation UI, so setting ShowsNavigationUI on pages in Windows Internet Explorer 7 has no effect. |
The following example shows how to use XAML to hide the navigation UI of a NavigationWindow.
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="HomePage" ShowsNavigationUI="False" >
</Page>
<Page x:Class="CSharp.HomePage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="HomePage" >
</Page>
Available since 3.0
