Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do you disable the right mouse click inside a TextBox?

share|improve this question

2 Answers

up vote 5 down vote accepted

You can just set the context menu to a new ContextMenu

    textBoxt1.ContextMenu = new ContextMenu();
share|improve this answer
There is no other way? – ehsan_d18 Oct 1 '10 at 12:52
1  
Simply Brilliant !!! – Barun Aug 3 '12 at 20:32

A neater solution might be to just disable the 'ShortcutsEnabled' property of the textbox as described here.

It would be a shame both scientifically and philosophically to create a whole object that has absolutely no purpose in life.

share|improve this answer

protected by Will Oct 1 '10 at 10:11

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.