I would like to append a submenu to the default context menu that the UltraTextEditor has. The one that has undo, cut, paste, etc...
I need the ability to "quick add" text that they selected from the right click menu. But I've hit 2 problems:
thank you,
Gene
Hi Gene,
This menu is actually the menu on the inbox TextBox control. So there is no way to modify it as far as I know. You will probably need to create your own menu and replace the whole thing.
Hi Mike
Here is what I'm doing, but that doesn't work. It keeps showing me the default context menu.
What am I missing?
this.tbxMessage.ContextMenuStrip = new ContextMenuStrip();this.tbxMessage.ContextMenuStrip.Items.Add("Print");