I am able to catch the right click of the mouse but i want to catch RIGHT CLICK + COPY/PASTE event
I tried to search on net but unable to get a single proper answer.
I am able to catch the right click of the mouse but i want to catch RIGHT CLICK + COPY/PASTE event
I tried to search on net but unable to get a single proper answer.
I've found some useful hints in an other post:
If you want to handle the Paste operation yourself, before it even happens, you will have to intercept the WM_PASTE message to the text box. One way of doing is would be by creating a specialized control.
You can find the code here
Question is not clear to me
If you will add specifics I will try and help
I do what may be what you are asking with ContextMenu
This is cut, but you would use Paste
CopyToDigest would be your custom handler
CommandBindings.Add(new CommandBinding(ApplicationCommands.Cut, CopyToDigest, CopyToDigestOK));
I got it from the book Pro WPF by McDonnald