huashui
huashui

Reputation: 1858

Display IE in full screen mode but show taskbar

I use C# to run IE browser by code

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. Can someone tell me how to do?

Upvotes: 0

Views: 771

Answers (1)

user3360579
user3360579

Reputation:

The simplest way using Process.Start() with command line parameter -k :Starts Internet Explorer in kiosk mode

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

Upvotes: 1

Related Questions