Add paste item to windows right click menu in c#

913 Views Asked by At

I am making an advanced clipboard program, and I managed to do the part where it remembers a list of copied items, but I need to manage that content being pasted in as well.

I tried and failed to find a way to detect a paste from the clipboard, so now I'm trying to add the copied out items to a context menu dropdown item in the Windows context menu.

So far however I only managed to find a way to add items to the Folder key in regedit, which doesn't help when I need to paste in text into a textbox, or notepad.

Is there a way to do that?

I'm working in C# in .NET 4.0 on a Win 8.1 x64 PC

EDIT:

My point is to gather everything that is being copied/cut to the clipboard, and then to be able to paste specific lines from that list into an editable text container. Either in automatically in the same/reverse order of them being copied or manually via a dropdown menu in the windows context menu, containing each line on my list.

0

There are 0 best solutions below