Is it possible to Navigate back in the WebBrowser Control? I couldnt find any method to do this.
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
There is no current way to do this from cache. But you can override the Key-Back Function to catch the back-button-press and implement your own Stack of Sites you visit.
回答2:
You can also do WebBrowser.InvokeScript()
to call window.history.back()
and cause the browser to go back in that way.