From 4dd87a0fc6a4bb218b7b889f28ba1c1901d75727 Mon Sep 17 00:00:00 2001 From: amaitland Date: Sun, 12 Aug 2018 17:09:27 +1000 Subject: [PATCH] CefSettings has been moved CefSharp.CefSettings is now CefSharp.WinForms.CefSettings/CefSharp.Wpf.CefSettings/CefSharp.OffScreen.CefSettings See https://github.com/cefsharp/CefSharp/issues/2477 for more details There is one set of settings for each flavour, all the essential command line workarounds are enabled (there are plenty of non-essential ones that have no yet been enabled by default) --- CefSharp.MinimalExample.WinForms/Program.cs | 1 + CefSharp.MinimalExample.Wpf/App.xaml.cs | 5 ++--- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CefSharp.MinimalExample.WinForms/Program.cs b/CefSharp.MinimalExample.WinForms/Program.cs index 0e33b59..e929ba2 100644 --- a/CefSharp.MinimalExample.WinForms/Program.cs +++ b/CefSharp.MinimalExample.WinForms/Program.cs @@ -2,6 +2,7 @@ // // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. +using CefSharp.WinForms; using System; using System.IO; using System.Windows.Forms; diff --git a/CefSharp.MinimalExample.Wpf/App.xaml.cs b/CefSharp.MinimalExample.Wpf/App.xaml.cs index 8e16e17..71d9d51 100644 --- a/CefSharp.MinimalExample.Wpf/App.xaml.cs +++ b/CefSharp.MinimalExample.Wpf/App.xaml.cs @@ -1,4 +1,5 @@ -using System; +using CefSharp.Wpf; +using System; using System.IO; using System.Windows; @@ -13,8 +14,6 @@ namespace CefSharp.MinimalExample.Wpf //By default CefSharp will use an in-memory cache, you need to specify a Cache Folder to persist data CachePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "CefSharp\\Cache") }; - - settings.DisableTouchpadAndWheelScrollLatching(); //Example of setting a command line argument //Enables WebRTC