I’m newbie to silverlight. Please help me find setting page title.

See I don’t want /Pages/Page1.xaml in browser title.
private void hlHome_Click(object sender, RoutedEventArgs e)
{
//HtmlDocument document = HtmlPage.Document;
//document.SetProperty("title", "Sample Title");
this.frameContainer.Navigate(new Uri("/Pages/Home.xaml", UriKind.Relative));
}
private void frameContainer_NavigationFailed(object sender, System.Windows.Navigation.NavigationFailedEventArgs e)
{
e.Handled = true;
frameContainer.Navigate(new Uri("/Pages/ErrorPage.xaml", UriKind.Relative));
}
It sounds to me that you haven’t specified the
Titleproperty in yourPage1.xaml.Altenatively if you need to assign the title dynamically you can do it in code during
OnNavigatedToin the code-behind.