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
Post a Comment