Thank you for your quick response and sorry I meant to update my own post because indeed using
Code: C#
void WebView_KeyDown(object sender, WndMsgEventArgs e)
and its equivalent
KeyUp, one can receive all key stroke events, even the ALT combinations, just that they are not sent on VM_KEY and only received by KeyDown.
However my main concern is that I have already a number of .NET methods that were using a
input message.
And translating the raw Window message into such an advanced .Net object is not easy work. I researched a little bit but did not find anything conclusive with that respect.
Additionally unlike with the .Net key stroke handlers, it is not possible to block the keystroke at the application level by using an attribute such as
handled=
trueRegards