我已经在TabControl中创建了一个Web浏览器控件。我想将TabItem的Header设置为Web浏览器的文档标题。
我在WebBrowser的导航事件中使用了以下代码

dynamic doc = tabBrowser.Document; //tabBrowser is the name of WebBrowser Control
tab.Header = doc.Title;            //tab is the name of the Tab Item


但是这段代码无法正常工作,标头仅在少数几个站点发生变化。
如何将tabItem的页眉设置为文档的标题值?

这是导航功能:

    public void tabBrowser_Navigated(object sender, System.Windows.Navigation.NavigationEventArgs e)
    {
       urlTextBox.Text = tabBrowser.Source.ToString();
       myHistory.addToHistory(tabBrowser.Source.ToString());
       BookMarks.addBookmark(tabBrowser.Source.ToString());
       dynamic doc = tabBrowser.Document;
       tab.Header = doc.Title;
    }

最佳答案

在我的代码中,我使用了WebBrowser的LoadCompleted事件。可能在您的“导航事件”文档中,文档尚未准备就绪,文档标题不正确或为空。

private void MyWebBrowser_LoadCompleted_1(object sender, NavigationEventArgs e)
{
    try
    {
        MyTextBox.Text = MyWebBrowser.Source.ToString();
        Title_doc.Content = ((dynamic)MyWebBrowser.Document).Title;
    }
    catch (Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
}

09-28 13:19