How can I get the standard context menu in a RichTextBox, like the one in TextBox (Copy, Paste, IME etc.)? I’d go with a P/Invoke solution if nothing is available out of the box. Or do I really have to follow those strange advices to create a custom menu to get a standard menu (sigh)?
Share
The
ContextMenuStripproperty of the richtextbox can be assigned to a user designed context menu, Copy/Cut/Paste and just apply the RichTextBox’s methods to each of the menu items such as CanUndo, CanCopy, CanPaste to determine the menu item’sEnabledproperty. Using the methods ‘Copy,CutandPaste` will be the executed method for the menu item’s click event.Hope this helps,
Best regards,
Tom.