标签: c# internet-explorer taskbar
我使用C#按代码运行IE浏览器
new InternetExplorer();
我希望IE以全屏模式运行,我也希望任务栏显示在IE的底部而不是覆盖底部。 有人可以告诉我该怎么做吗?
答案 0 :(得分:1)
使用Process.Start()和命令行参数的最简单方法 -k:以kiosk模式启动Internet Explorer
System.Diagnostics.Process.Start("iexplore.exe"," -k http://google.com");