Use the Page.ShowsNavigationUI property to hide it. From the MSDN documentation you can do this in XAML:
<Page
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="HomePage"
ShowsNavigationUI="False"
>
...
</Page>
or in code:
using System;
using System.Windows;
using System.Windows.Controls;
namespace CSharp
{
public partial class HomePage : Page
{
public HomePage()
{
InitializeComponent();
this.ShowsNavigationUI = false;
}
}
}
, , WPF XBAP:
WPF Microsoft Internet Explorer 6, , , ShowsNavigationUI. WPF Windows Internet Explorer 7, ShowsNavigationUI Windows Internet Explorer 7 .