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
Good day! Is there a way to supress RMB click?
I have tried private void GlobalHookMouseDownExt(object sender, MouseEventExtArgs e) { if (e.Button == MouseButtons.Right) { e.Handled = true; }
But the context menu from RMB click in, for example, Visual Studio — still showing. I guess, that's not as simple, as I hoped? :)
The text was updated successfully, but these errors were encountered:
Good day! Is there a way to supress RMB click?
I have tried
private void GlobalHookMouseDownExt(object sender, MouseEventExtArgs e) { if (e.Button == MouseButtons.Right) { e.Handled = true; }
But the context menu from RMB click in, for example, Visual Studio — still showing. I guess, that's not as simple, as I hoped? :)
The text was updated successfully, but these errors were encountered: