We have a WinForms app with the WebBrowser control on a form (currently compiling it for the classic .NET Framework 4.7.2). We need to suppress or intercept the Alt+Left and Alt+Right keyboard combinations when this WebBrowser control has the input focus to implement our own history navigation. We tried several methods including overwriting of the Control.ProcessCmdKey() for the control or the whole form, but this does not help. How to do what we need in .NET Framework in C# or VB.NET?