我必须使用 C# 打开最大化的 Internet Explorer。我尝试了以下方法:
try
{
var IE = new SHDocVw.InternetExplorer();
object URL = "http://localhost/client.html";
IE.ToolBar = 0;
IE.StatusBar = true;
IE.MenuBar = true;
IE.AddressBar = true;
IE.Width = System.Windows.Forms.SystemInformation.VirtualScreen.Width;
IE.Height = System.Windows.Forms.SystemInformation.VirtualScreen.Height;
IE.Visible = true;
IE.Navigate2(ref URL);
ieOpened = true;
break;
}
catch (Exception)
{
}
我可以打开不同的大小,但我找不到如何打开最大化的 IE。我检查了msdn,没有可以最大化的属性。
请给我一些建议。
PS:我正在开发 C# 控制台应用程序、.Net4.5 和 VS2012