What is the best web browser control used in a Windows Form application?

I am looking for a web browser control or any technology that can display web pages in a Windows Form application faster. Any suggestions? I use .Net and the built-in web browser control is not suitable for me because it has a lot of problems and it is slow. I tried GeckoFX and still thought it was good enough. It's pretty slow, but faster than managing a .Net web browser, and it also has many nice features.

Update

I tested many web browser controls and we ended up using Awesomium. Excellent web browser control for Windows applications. And also fast. Here is the link http://awesomium.com/

+6
source share
1 answer

Have you tried these:

WebKit.NET
This is the shell of the WinForms management library for WebKit, written in C #. The goal is to make it easy for developers to incorporate WebKit into their .NET applications.

Geckofx
This is a Windows Forms control written in pure, commented out C # that includes the Mozilla Gecko browser control in any Windows Forms application. It also contains a simple class model that provides access to HTML and CSS DOM.

Moznet
This is an alternative shell for Gecko, which claims to be more active than GeckoFX.

+6
source

Source: https://habr.com/ru/post/913161/


All Articles