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.
可能重复: 以编程方式获取页面截图
我正在做的是一个简单的WebBrowser1.Navigate("site");
WebBrowser1.Navigate("site");
我想要做的是保存该网页的副本,该网页在我的 Windows 表单 WebBrowser1 中加载。有什么想法吗?
是的,这应该是可能的,因为 WebBrowser 是从 Control 派生的。
此链接说明如何从 winforms 应用程序获取屏幕截图。
另一个可能有用的SO问题
如果您想将文档保存为例如 HTML 文件,您可以调用WebBrowser.ShowSaveAsDialog方法。