■ WebBrowser 클래스를 사용해 Internet Explorer 버전 11을 사용하는 방법을 보여준다.
▶ WebBrowser 클래스 : Internet Explorer 버전 11 사용하기 예제 (C#)
1 2 3 4 5 6 7 |
using System.Diagnostics; string applicationFileName = $"{Process.GetCurrentProcess().ProcessName}.exe"; SetRegistryKeyForWebBrowserControl(applicationFileName); |
※ 관리자 권한으로 실행해야 한다.
▶ WebBrowser 클래스 : Internet Explorer 버전 11 사용하기 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
using Microsoft.Win32; using System; #region 웹 브라우저 컨트롤용 레지스트 키 설정하기 - SetRegistryKeyForWebBrowserControl(applicationFileName) /// <summary> /// 웹 브라우저 컨트롤용 레지스트 키 설정하기 /// </summary> /// <param name="applicationFileName">애플리케이션 파일명</param> /// <returns>처리 결과</returns> /// <remarks>WebBrowser 컨트롤을 Internet Explorer 11 버전으로 동작하도록 해준다.</remarks> public bool SetRegistryKeyForWebBrowserControl(string applicationFileName) { RegistryKey registryKey = null; try { registryKey = Registry.LocalMachine.OpenSubKey ( @"SOFTWARE\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_BROWSER_EMULATION", true ); if(registryKey == null) { return false; } string registryKeyValue = Convert.ToString(registryKey.GetValue(applicationFileName)); if(registryKeyValue == "11001") { registryKey.Close(); return true; } if(string.IsNullOrEmpty(registryKeyValue)) { registryKey.SetValue(applicationFileName, unchecked((int)0x2AF9), RegistryValueKind.DWord); } registryKeyValue = Convert.ToString(registryKey.GetValue(applicationFileName)); if(registryKeyValue == "11001") { return true; } else { return false; } } catch(Exception) { return false; } finally { if(registryKey != null) { registryKey.Close(); } } } #endregion |