
Is there a simple "Copy/Paste" context menu available for a DoubleEditBox?
Is there a simple "Copy/Paste" context menu available for a DoubleEditBox?
Hi John,
Sorry there isn't a built-in context menu for that. Ctrl+A, Ctrl+C and Ctrl+V should work though.
Any tips for creating a context menu on the DoubleEditBox?
Hi John,
I think you can just do something like this, which should work when the caret is in the text portion of the control:
<editors:DoubleEditBox.ContextMenu>
<ContextMenu>
<MenuItem Command="Copy" />
<MenuItem Command="Paste" />
</ContextMenu>
</editors:DoubleEditBox.ContextMenu>
Please log in to a validated account to post comments.