0

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?

huashui
  • 1,758
  • 2
  • 16
  • 24

1 Answers1

1

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");
  • http://stackoverflow.com/questions/13030414/open-a-page-in-ie-using-c-sharp –  Jan 10 '17 at 11:10