Page.ShowsNavigationUI 属性

定义

获取或设置一个值,该值指示 Microsoft Internet Explorer 6 上的导航 UI NavigationWindow 是否可见。

public:
 property bool ShowsNavigationUI { bool get(); void set(bool value); };
public bool ShowsNavigationUI { get; set; }
member this.ShowsNavigationUI : bool with get, set
Public Property ShowsNavigationUI As Boolean

属性值

Boolean

true 如果主机 NavigationWindow 的导航 UI 可见,则为 ;否则为 false

例外

在并非由 ShowsNavigationUIPage 或浏览器承载的 Window 实例上,将检查 NavigationWindow 属性。

示例

以下示例演示如何使用 XAML 隐藏导航 NavigationWindowUI。

<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>
using System;
using System.Windows;
using System.Windows.Controls;

namespace CSharp
{
    public partial class HomePage : Page
    {
        public HomePage()
        {
            InitializeComponent();

            // Hide host's navigation UI
            this.ShowsNavigationUI = false;
        }
    }
}

Imports System.Windows
Imports System.Windows.Controls

Namespace VisualBasic
    Partial Public Class HomePage
        Inherits Page
        Public Sub New()
            InitializeComponent()

            ' Hide host's navigation UI
            Me.ShowsNavigationUI = False
        End Sub
    End Class
End Namespace

注解

NavigationWindow 默认情况下,显示导航 UI 以启用浏览器样式向前和向后导航。 If a page is set as the StartupUri, Application automatically opens a NavigationWindow to host the page in. 如果页面不想使用默认 NavigationWindow 导航 UI,则可以将其设置为 ShowsNavigationUI false

备注

由于 WPF 不与 Microsoft Internet Explorer 6 的导航 UI 集成,因此它提供自己的导航 UI,可通过设置 ShowsNavigationUI来显示或隐藏该 UI。 WPF 与 Windows Internet Explorer 7 导航 UI 集成,因此在 Windows Internet Explorer 7 中的页面上设置ShowsNavigationUI不起作用。

适用于