tags:

views:

305

answers:

2

is there any way to add an extra item to the default WinForms TextBox context menu without creating my own?

A: 

I think you should override WndProc and capture the messages that the textbox receive.

Mohammadreza
A: 

It is possible, but complicated. I suggest you implement your own menu using "modern" ContextMenuStrip class instead of standard ContextMenu.

arbiter