时间:2019-03-17 标签:c#WebBrowserSVGWindows2008R2
我的 C# 应用程序中有一个 WebBrowser,我想在其中显示 SVG 文件。但是,当我在 Windows 2008 R2 计算机上运行该应用程序时,SVG 文件不会显示。 当我在 Internet Explorer 中查看同一服务器上的同一文件时,一切看起来都正常。
我已经尝试过:
- IE ESC 设置
- 打开或关闭受信任站点/本地 Intranet 站点的
- 运行 32 位
- 执行以下覆盖:(
来自 此博客)
protected override void WndProc(ref Message m)
{
switch (m.Msg)
{
case 21:
case 201:
case 204:
case 207:
base.DefWndProc(ref m);
return;
}
base.WndProc(ref m);
}
任何人都可以帮我解决这个问题吗?谢谢你!
I have a WebBrowser in my C# application, in which i want to show a SVG file. However, when I run the app on a Windows 2008 R2 machine, the SVG file does not show up.
When I have a look at the same file on the same server in Internet Explorer, everything looks ok.
What i already have tried:
- IE ESC settings on or off
- Trusted Sites / Local intranet sites
- Run 32 bits
- do the following override:
(from this blog)
protected override void WndProc(ref Message m)
{
switch (m.Msg)
{
case 21:
case 201:
case 204:
case 207:
base.DefWndProc(ref m);
return;
}
base.WndProc(ref m);
}
Can anyone help me out with this issue? Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题在于数据执行保护 (DEP)。关掉之后就可以了!
The problem was Data Execution Prevention (DEP). After switching this off, it works!