Skip to content
This repository has been archived by the owner on Oct 12, 2021. It is now read-only.

Upgrade to CefGlue v70 and CefSharp v71

softoille@gmail.com edited this page Nov 29, 2019 · 1 revision

Chromely v4 - Please Note!

Creating browser window with CefGlue prio to version 70

class Program
{
   static int Main(string[] args)
   {
      -----
      using (var window = new CefGlueBrowserWindow(config))
      {
         return window.Run(args);
      }
  }
}

Creating browser window with CefGlue from version 70

class Program
{
   static int Main(string[] args)
   {
      -----
      using (var window = ChromelyWindow.Create(config))
      {
         return window.Run(args);
      }
  }
}

Creating browser window with CefSharp prio to version 71

class Program
{
   static int Main(string[] args)
   {
      -----
      using (var window = new CefSharpBrowserWindow(config))
      {
         return window.Run(args);
      }
  }
}

Creating browser window with CefSharp from version 71

class Program
{
   static int Main(string[] args)
   {
      -----
      using (var window = ChromelyWindow.Create(config))
      {
         return window.Run(args);
      }
  }
}
Clone this wiki locally