带有背景图像的 WP7 WebBrowser 控件?

发布于 2024-10-31 18:54:56 字数 262 浏览 2 评论 0原文

由于 WebBrowser 控件不允许透明背景,我尝试在 WebBrowser 控件中设置背景。

我尝试在调用 NavigateToString() 之前修改 HTML,但由于 html 是内存中的字符串,我不确定我的图像的路径应该是什么

尝试这不起作用:

body { background-image:url('/Images/texture.jpg'); }

有人知道这是否可能,或者我应该使用什么路径?

Since the WebBrowser control doesn't allow transparent backgrounds I'm trying to set the background in the WebBrowser control.

I've tried modifying the HTML before calling NavigateToString(), but since the html is a string in memory, I'm not sure what the path should be for my image

Trying this doesn't work:

body { background-image:url('/Images/texture.jpg'); }

Does anybody know if this is possible, or what path I should be using?

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

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

发布评论

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

评论(3

够钟 2024-11-07 18:54:56

任何路径都必须是 Internet 上文件的绝对路径或isolatedStorage 中内容的相对路径。

Any paths need to be absolute paths to files on the Internet or relative paths to content in IsolatedStorage.

你怎么这么可爱啊 2024-11-07 18:54:56

尝试适当设置 WebBrowser.Base,它设置显示本地或生成内容的网络浏览器的“根目录”

Try setting WebBrowser.Base appropriatelly, it sets the 'root directory' for a webbrowser that displays local or generated contents

所有深爱都是秘密 2024-11-07 18:54:56

尝试像这样的完整图像路径

body { background-image:url('C:/Images/texture.jpg'); }

和这个 winform Webbrowser

    webBrowser1.Document.Write("<BODY background= D:\\Desktop\\123.jpg bgColor=#ffffff text=#000000>");

try full image path like this

body { background-image:url('C:/Images/texture.jpg'); }

and this winform Webbrowser

    webBrowser1.Document.Write("<BODY background= D:\\Desktop\\123.jpg bgColor=#ffffff text=#000000>");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文