我想在 Web 浏览器中加载本地 html 文件,其背景图像也是本地的。请任何人帮助我如何做到这一点。
我正在使用以下代码在 Web 浏览器中加载本地 html 文件。
var rs = Application.GetResourceStream(new Uri("images/Company.html", UriKind.Relative));
using (StreamReader sr = new StreamReader(rs.Stream))
{
this.wb1.NavigateToString(sr.ReadToEnd());
}
我在 html 文件中显示如下背景图像
body{
background: url(bg.jpg) no-repeat;
background-size: 100%;
}