You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my wpf project, I use 47.0.3.0 version of Cefsharp chromium. Pulltorefresh works when I clicked on two button of mouse at the same time, how can I set it to work with only left button click?
Is there any event to provide only left click instead of "touch-events"?
Hi,
In my wpf project, I use 47.0.3.0 version of Cefsharp chromium. Pulltorefresh works when I clicked on two button of mouse at the same time, how can I set it to work with only left button click?
Is there any event to provide only left click instead of "touch-events"?
CefSettings settings = new CefSettings();
settings.CefCommandLineArgs["touch-events"] = "disabled";
Cef.Initialize(settings, true, true);
Thanks.
The text was updated successfully, but these errors were encountered: