How to hide the default context menu in the CefSharp Chromium browser in WPF
https://www.technical-recipes.com/2016/using-the-cefsharp-chromium-web-browser-in-wpf-xaml/ An example of not only how to use CefSharp.WinForms.ChromiumWebBrowser version 67 in a Visual Studio WPF application, but to hide the default context menu that show up on right-clicking the browser area. See the following post for a general description of how to use CefSharp in Visual Studio: Step 1: Create a new Visual Studio project To start with create a new Visual Studio WPF application: Step 2: Install the necessary libraries Obtain CefSharp Select Tool > NuGet Package manager > Package Manager Console. Use the command: PM> install-package CefSharp.Wpf Now add the dll references. Right-click on References, select ‘Add reference’ When the dialog appears, select the Browse button. Navigate to the ‘packages’ folder that NuGet has installed to your Visual Studio project. For this project I’m choos...