views:

142

answers:

1

MenuPic

Greetings. I am using the NumericUpDown control on my application. When I right click mouse on any of these controls the popup menu shows up as displayed in the above link.

How do I remove this menu please?

Thanks.

+1  A: 

You can assign an empty context menu to the controls

ContextMenu contextMenu = new ContextMenu();
this.numericUpDown1.ContextMenu = contextMenu;
this.numericUpDown2.ContextMenu = contextMenu;
Alexandre Pepin
Outstanding! Thanks a bunch.
iEisenhower