gpt4 book ai didi

c# - Wpf控件显示html代码

转载 作者:行者123 更新时间:2023-11-27 22:39:38 26 4
gpt4 key购买 nike

我在服务器上使用 Hit 并在 Streamer 中获取内容。 然后我使用一个字符串来获取网站的 Html 代码。 我必须在 WPF 应用程序中使用它。 我应该使用哪个控件来放置包含 html 代码的 url 以在我的 wpf 中显示以及如何显示?

        string urlcode;
HttpWebRequest request = WebRequest.Create("http://google.com/") as HttpWebRequest;
HttpWebResponse response = request.GetResponse() as HttpWebResponse;
StreamReader streamr = new StreamReader(response.GetResponseStream());
urlcode = streamr.ReadToEnd();

最佳答案

在预览选项卡上嵌入 WebBrowser 控件,并使用 NavigateToString 或 NavigateToStream 方法将 HTML 传递给它。

关于c# - Wpf控件显示html代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11881789/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com