c# - How to get page name with webBrowser -


try code wpf. want implement simple webbrowser, , i'm stuck. want name of opened page (every tab has name according opened page), can't find solution. in c# can use code:

tabcontrol.selectedtab.text = webbrowser.url.host.tostring(); 

but wpf doesn't work. solution find page name wpf?

please try this,

tabcontrol.selectedtab.text = webbrowser1.url.absoluteuri; 

Comments

Popular posts from this blog

iphone - Three second countdown in cocos2d -

hyperlink - how to do url routing in php -

c - Avoiding Extra Malloc in Linked List (node->next = NULL) -