Any reason to prefer CefSharp over CefGlue (or vice-versa)?

后端 未结 4 1586
别那么骄傲
别那么骄傲 2021-02-01 12:21

In the realm of providing a decent implementation of the Chromium Embedded Framework (CEF) for .Net, the two leading options appear to be CefSharp and CefGlue. They differ in a

4条回答
  •  星月不相逢
    2021-02-01 13:20

    In some sense they are about the same and whichever you'd pick you should be able to get away with in 2014. We had this question some time ago and here what we have comeup with:

    CefSharp

    Pluses:

    1. The WinForms is very old and mature project. If you are to use WinForms it is probably the way to go;
    2. It has a NuGet bundle, so it is easy to use and update;
    3. Supports newer version of WPF (.NET 4+);

    Minuses:

    1. As @Uwe Keim had mentioned they just recently finally started to support WPF, so it is not as mature as Xillium.CefGlue;
    2. Community isn't that receptive to your needs;
    3. No Mono support.

    CefGlue

    Pluses:

    1. It is .NET 2.0 friendly. Your code will be able to run on it. (This was critical for us)
    2. A very responsive community which would help you to get what you need done/fixed;
    3. More mature support for WPF;
    4. Mono support.

    Minuses:

    1. No NuGet package as far as I know, you'd need to add libraries and update them yourself

提交回复
热议问题