Widziałem odpowiedź Veera. Myślę, że to w porządku, ale to nie zadziałało dla mnie. Może używam .NET 4 i używam 64x OS, więc proszę sprawdzić to.
Możesz skonfigurować lub sprawdzić to podczas uruchamiania aplikacji:
private void Form1_Load(object sender, EventArgs e)
{
var appName = Process.GetCurrentProcess().ProcessName + ".exe";
SetIE8KeyforWebBrowserControl(appName);
}
private void SetIE8KeyforWebBrowserControl(string appName)
{
RegistryKey Regkey = null;
try
{
if (Environment.Is64BitOperatingSystem)
Regkey = Microsoft.Win32.Registry.LocalMachine.OpenSubKey(@"SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_BROWSER_EMULATION", true);
else
Regkey = Microsoft.Win32.Registry.LocalMachine.OpenSubKey(@"SOFTWARE\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_BROWSER_EMULATION", true);
if (Regkey == null)
{
MessageBox.Show("Application Settings Failed - Address Not found");
return;
}
string FindAppkey = Convert.ToString(Regkey.GetValue(appName));
if (FindAppkey == "8000")
{
MessageBox.Show("Required Application Settings Present");
Regkey.Close();
return;
}
if (string.IsNullOrEmpty(FindAppkey))
Regkey.SetValue(appName, unchecked((int)0x1F40), RegistryValueKind.DWord);
FindAppkey = Convert.ToString(Regkey.GetValue(appName));
if (FindAppkey == "8000")
MessageBox.Show("Application Settings Applied Successfully");
else
MessageBox.Show("Application Settings Failed, Ref: " + FindAppkey);
}
catch (Exception ex)
{
MessageBox.Show("Application Settings Failed");
MessageBox.Show(ex.Message);
}
finally
{
if (Regkey != null)
Regkey.Close();
}
}
Możesz znaleźć messagebox.show, tylko do testowania.
Klucze są następujące:
11001 (0x2AF9) - Internet Explorer 11. Strony internetowe są wyświetlane w trybie brzegowym IE11, niezależnie od !DOCTYPE
dyrektywy.
11000 (0x2AF8) - Internet Explorer 11. Strony internetowe zawierające !DOCTYPE
dyrektywy oparte na standardach są wyświetlane w trybie krawędzi IE11. Wartość domyślna dla IE11.
10001 (0x2711) - Internet Explorer 10. Strony internetowe są wyświetlane w trybie standardów IE10, niezależnie od !DOCTYPE
dyrektywy.
10000 (0x2710) - Internet Explorer 10. Strony internetowe zawierające !DOCTYPE
dyrektywy oparte na standardach
są wyświetlane w trybie standardów IE10. Wartość domyślna dla przeglądarki Internet Explorer 10.
9999 (0x270F) - Internet Explorer 9. Strony internetowe są wyświetlane w trybie standardów IE9, niezależnie od !DOCTYPE
dyrektywy.
9000 (0x2328) - Internet Explorer 9. Strony internetowe zawierające !DOCTYPE
dyrektywy oparte na standardach są wyświetlane w trybie IE9.
8888 (0x22B8) - Strony internetowe są wyświetlane w trybie standardów IE8, niezależnie od !DOCTYPE
dyrektywy.
8000 (0x1F40) - Strony internetowe zawierające !DOCTYPE
dyrektywy oparte na standardach są wyświetlane w trybie IE8.
7000 (0x1B58) - strony internetowe zawierające !DOCTYPE
dyrektywy oparte na standardach są wyświetlane w trybie standardów IE7.
Odniesienie: MSDN: Internet Feature Controls
Widziałem aplikacje takie jak Skype używające 10001. Nie wiem.
UWAGA
Aplikacja instalacyjna zmieni rejestr. Może być konieczne dodanie wiersza w pliku manifestu, aby uniknąć błędów związanych z uprawnieniami do zmiany w rejestrze:
<requestedExecutionLevel level="highestAvailable" uiAccess="false" />
AKTUALIZACJA 1
Jest to klasa, która pobierze najnowszą wersję IE w systemie Windows i wprowadzi zmiany tak, jak powinny;
public class WebBrowserHelper
{
public static int GetEmbVersion()
{
int ieVer = GetBrowserVersion();
if (ieVer > 9)
return ieVer * 1000 + 1;
if (ieVer > 7)
return ieVer * 1111;
return 7000;
}
public static void FixBrowserVersion()
{
string appName = System.IO.Path.GetFileNameWithoutExtension(System.Reflection.Assembly.GetExecutingAssembly().Location);
FixBrowserVersion(appName);
}
public static void FixBrowserVersion(string appName)
{
FixBrowserVersion(appName, GetEmbVersion());
}
public static void FixBrowserVersion(string appName, int ieVer)
{
FixBrowserVersion_Internal("HKEY_LOCAL_MACHINE", appName + ".exe", ieVer);
FixBrowserVersion_Internal("HKEY_CURRENT_USER", appName + ".exe", ieVer);
FixBrowserVersion_Internal("HKEY_LOCAL_MACHINE", appName + ".vshost.exe", ieVer);
FixBrowserVersion_Internal("HKEY_CURRENT_USER", appName + ".vshost.exe", ieVer);
}
private static void FixBrowserVersion_Internal(string root, string appName, int ieVer)
{
try
{
if (Environment.Is64BitOperatingSystem)
Microsoft.Win32.Registry.SetValue(root + @"\Software\Wow6432Node\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION", appName, ieVer);
else
Microsoft.Win32.Registry.SetValue(root + @"\Software\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION", appName, ieVer);
}
catch (Exception)
{
}
}
public static int GetBrowserVersion()
{
string strKeyPath = @"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer";
string[] ls = new string[] { "svcVersion", "svcUpdateVersion", "Version", "W2kVersion" };
int maxVer = 0;
for (int i = 0; i < ls.Length; ++i)
{
object objVal = Microsoft.Win32.Registry.GetValue(strKeyPath, ls[i], "0");
string strVal = System.Convert.ToString(objVal);
if (strVal != null)
{
int iPos = strVal.IndexOf('.');
if (iPos > 0)
strVal = strVal.Substring(0, iPos);
int res = 0;
if (int.TryParse(strVal, out res))
maxVer = Math.Max(maxVer, res);
}
}
return maxVer;
}
}
użycie klasy, jak następuje
WebBrowserHelper.FixBrowserVersion();
WebBrowserHelper.FixBrowserVersion("SomeAppName");
WebBrowserHelper.FixBrowserVersion("SomeAppName",intIeVer);
możesz napotkać problem z porównywalnością systemu Windows 10, może z powodu samej witryny może być konieczne dodanie tego metatagu
<meta http-equiv="X-UA-Compatible" content="IE=11" >
Cieszyć się :)