The WebBrowser control has a property called ‘IsWebBrowserContextMenuEnabled’ that disables all ability to right-click on a web page and see a context menu. This is very close to what I want (I don’t want anyone to be able to right-click and print, hit back, hit properties, view source, etc).
The only problem is this also disables the context menu that appears in TextBoxes for copy/paste, etc.
To make this clearer, this is what I don’t want:

I would like to disable the main context menu, but allow the one that appears in TextBoxes. Anyone know how I would do that? The WebBrowser.Document.ContextMenuShowing event looks promising, but doesn’t seem to properly identify the element the user is right-clicking on, either through the HtmlElementEventArgs parameter’s ‘FromElement’ and ‘ToElement’ properties, nor is the sender anything but the HtmlDocument element.
Thanks in advance!

have you considered writing your own context menu in javascript? Just listen to the user right clicking on the body, then show your menu with copy and paste commands (hint: element.style.display = ‘block|none’). To copy, execute the following code:
And to paste:
Source:
http://www.geekpedia.com/tutorial126_Clipboard-cut-copy-and-paste-with-JavaScript.html
NOTE: This only works in IE (which is fine for your application).
I know its not bulletproof by any means, but here is a code sample that should get you started: