Disable textbox pop-up menu

BlackByte

Well-known member
Joined
Jun 29, 2008
Messages
126
Location
South Africa, Durban
Programming Experience
1-3
Hi, is there anyway to disable the menu that contains : Cut, Copy, Paste, etc, on a textbox, when you right click it?
 
To disable the default ContextMenuStrip simply add a ContextMenuStrip to your form and assign your empty one to the TB's
 
Set ShortcutsEnabled Property to False.
 
Back
Top