带有背景图像的 WP7 WebBrowser 控件?
由于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
任何路径都必须是 Internet 上文件的绝对路径或isolatedStorage 中内容的相对路径。
Any paths need to be absolute paths to files on the Internet or relative paths to content in IsolatedStorage.
尝试适当设置 WebBrowser.Base,它设置显示本地或生成内容的网络浏览器的“根目录”
Try setting WebBrowser.Base appropriatelly, it sets the 'root directory' for a webbrowser that displays local or generated contents
尝试像这样的完整图像路径
和这个 winform Webbrowser
try full image path like this
and this winform Webbrowser