如何在没有后退按钮的情况下打开IE

时间:2017-07-06 06:01:44

标签: c# internet-explorer controls

我想使用C#Code打开没有后退按钮的IE。就像这样:

enter image description here

但它显示如下:

enter image description here

C#代码是:

using (WebBrowser wb = new WebBrowser())
{
    wb.Url = new System.Uri("about:blank");
    wb.Document.Window.OpenNew(URLStr.ToString(), "location=yes,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=yes");
}

我想知道我哪里出错了?

1 个答案:

答案 0 :(得分:0)

创建自定义表单以保存浏览器,而不显示浏览器本身。请检查我的示例代码:

enter image description here

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();

        WebBrowser webbrowser = new WebBrowser();
        webbrowser.Parent = this;
        webbrowser.Dock = DockStyle.Fill;
        webbrowser.Navigate("www.google.com");  
    }
}