Reputation: 1858
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
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