以可编辑模式在Web浏览器控件中加载本地html文件

本文关键字:加载 文件 html 控件 浏览器 编辑 模式 Web | 更新日期: 2023-09-27 17:59:57

我想在可编辑模式下在Web浏览器控件中加载一个本地html文件。我在webBrowser中加载html文件的代码是:

private void LoadFile(string filename)
{
    using (StreamReader reader = File.OpenText(filename))
    {
       webBrowser1.DocumentText = reader.ReadToEnd();
       reader.Close();
       Text = webBrowser1.DocumentTitle;
    }
}

但它是不可编辑的。

以可编辑模式在Web浏览器控件中加载本地html文件

请检查此片段。

 webBrowser1.AllowWebBrowserDrop = false;
    webBrowser1.Url = new Uri(@"D:'TEMP'sample.htm");