copy/paste event listener in C#

For copy listener please look into this question here and an article here.

As for the paste event as discussed in the above thread there seems to be some confusion as clipboard listener does not provides any feedback on pasting. You may have to install global hooks to capture CTRL + V and mouse context menu.

for using key hook please read this CodeProject article.

for listening to mouse events and movement please visit this another CodeProject article and this msdn page about WIN 32 hooks.

Leave a Comment