在 WPF 中显示 HTML 内容

发布于 2024-12-21 19:38:05 字数 255 浏览 0 评论 0原文

您好,我正在开发一个 WPF 应用程序。我需要在我的一个 WPF 表单上显示网页中的一些 HTML 内容。我应该使用什么,最好的方法是什么?我找到了 2 个可能的解决方案,但不知道哪个是最好的。

使用 FlowDocumentReader,然后创建 FlowDocument 控件或 使用 DocumentViewer 控件,然后创建 FixedDocument 控件或任何其他建议。

提前致谢!

Hi I'm developing a WPF application. I need to display some HTML content from a Web Page on one of my WPF forms. What should I use, what is the best way to do this? I found 2 possible solutions but don't know which is the best.

Use a FlowDocumentReader and then create a FlowDocument control or
Use a DocumentViewer control and then create a FixedDocument control or any other advice.

Thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

森罗 2024-12-28 19:38:05

您可以使用 WebBrowser 控件,但请不要使用它 - 它充满了内存泄漏并且未正确处理。我花了很多时间寻找它在生产代码中产生的问题的解决方案,但没有成功。

在此站点上进行快速搜索将显示一些“未解决”的问题,因为它基本上是 Internet Explorer 的 COM 对象(因此是非托管)版本的包装器,虽然它似乎可以很好地在 WPF 中显示嵌入页面,但问题还远未解决。超越其外观的简洁性。

许多人建议使用 HTTP 传输来获取内容,然后将其转换并将其显示为流文档,就像您在此处进行调查一样。在使用 WebBrowser 内存并处理问题太长时间之后,我最终更改为使用 FlowDocumentScrollViewer 控件,此后就再也没有回头过。

You can use the WebBrowser control but please do not use it - it is filled with memory leaks and does not dispose propoerly. I have spent lots of time looking for solutions to the problems it produces in production code to no avail.

A quick search on this site will show some of the "unsolved" issues becasue basically it is a wrapper for a COM object (hence unmanaged) version of Internet Explorer and while it seems to work beautifully for displaying an embedded page in WPF the problems far out weigh its appearance of simplicity.

Many have suggested using HTTP transfers to get your content and then convert it and display it as a flow document as you are investigating here. After laboring with the WebBrowser memory and dispose issues for far too long I ended up changing to use the FlowDocumentScrollViewer control and havent looked back since.

浴红衣 2024-12-28 19:38:05

您可以使用 Web 浏览器控件来显示 HTML 内容。

You can use Web Browser control to display HTML content.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文