本文介绍了WebBrowser控件限制的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用Windows窗体C#项目WebBrowser控件,并想知道,如果有怎么这样应用程序实例可以在同一时间都运行的任何限制。 (换句话说,没有强制MSFT比物理机的限制以外的任何限制 - CPU /内存等)

I am using the WebBrowser control in a windows form C# project and wanted to know if there are any limitations of how many instances of such application you can have running at the same time. (in other words does MSFT enforce any limitations other than physical machine limits - CPU/memory etc)

推荐答案

有关于 web浏览器控制没有人为的限制。

There are no artificial limitations on the WebBrowser control.

但是,它使用IE的渲染引擎(不管版本被安装在最终用户的计算机上),所以它使用的存储器公平位

However, it uses IE's rendering engine (whatever version is installed on the end-user's computer), so it uses a fair bit of memory.

什么是你想怎么办?

如果你想编写一个Web浏览器,我推荐你使用一个更好的渲染引擎,如。

If you're trying to write a web browser, I recommend that you use a better rendering engine, such as WebKit or Gecko.

这篇关于WebBrowser控件限制的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 19:51