C# 将 css 设置为 System.windows.forms.webBrowser
可以给浏览器设置css吗?如果是,我该怎么做?
假设我有一个具有 2 个属性的类:
public String Css
public XElement Body
我想将正文绑定到 Web 浏览器并设置该 Web 浏览器的 css。
这可能吗?我应该怎么做?
Is it possible to set css to the webbrowser? If yes, than how Can I do this?
Let's say I have a class with 2 properties:
public String Css
and public XElement Body
I want to bind the body to a webbrowser and set the css of that webbrowser.
Is this possible and how should I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
标记组装包含完整 HTML 的字符串,然后将
DocumentText
属性设置为该字符串。You can assemble a string containing the complete HTML with a
<style>
tag, then set theDocumentText
property to that string.