I would like to select everything when the user right-clicks on my web browser.
I am developing a win forms application and use web browsers to display my information because I can use html to style words.
The right-click context menu does not work for me. The parameters on it are not related to my application.
But the context menu after the selection was made, I want to save, copy, cut, paste parameters.
I can already highlight everything:
getCurrentBrowser().Document.ExecCommand("SelectAll", true, null);
I just wanted to do this in the right click event of a web browser?
source
share