Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 WebBrowser 控件并使用 NavigateToString 来显示内容。在调用 NavigateToString 之后,一切都已正确加载并且看起来很棒。但是,如果按下 F5,则显示变为空白。
如何允许刷新,但重新加载内容?
那是因为没有要重新加载的 URL。更准确地说,我希望 URLabout:blank在使用NavigateToString. 检查browser.Document.URL以验证。您可能想要创建一个临时文件并导航到它。
about:blank
NavigateToString
browser.Document.URL
[编辑]确实,((dynamic)webBrowser.Document).URL是about:blankafter NavigateToString,所以你重新加载一个空白页。
((dynamic)webBrowser.Document).URL