简体   繁体   English

以全屏模式显示IE,但显示任务栏

[英]Display IE in full screen mode but show taskbar

I use C# to run IE browser by code 我使用C#通过代码运行IE浏览器

new InternetExplorer();

I want IE runs in full screen mode, and I also want the taskbar shows at the bottom of IE instead of covering the bottom. 我希望IE以全屏模式运行,并且我也希望任务栏显示在IE的底部而不是覆盖底部。 Can someone tell me how to do? 有人可以告诉我该怎么做吗?

使用Process.Start()和命令行参数-k的最简单方法:以信息亭模式启动Internet Explorer

System.Diagnostics.Process.Start("iexplore.exe"," -k http://google.com");

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM