I\'m using CefSharp.WinForms.ChromiumWebBrowser
v45 in my project. When I right click into the web browser, the default context menu will show up:
The simplest way for you is set event PreviewMouseRightButtonUp and PreviewMouseRightButtonDown with the same function have e.Handle = true. This solution will not show context menu of cefsharp when you right click.
XAML:
And the function:
private void Browser_PreviewMouseRightButton(object sender, MouseButtonEventArgs e)
{
e.Handled = true;
}