Is there a clipboard changed or updated event that i can access through C#?
|
|
I think you'll have to use some p/invoke:
See this article on how to set up a clipboard monitor in c# Basically you register your app as a clipboard viewer using
and then you will recieve the
(There's more to be done; passing things along the clipboard chain and unregistering your view, but you can get that from the article) |
||||
|
|
For completeness, here's the control I'm using in production code. Just drag from the designer and double click to create the event handler.
|
|||||||||
|
|
Check out the SetClipboardViewer, ChangeClipboardChain and SendMessage API calls. Here's a good article that explains how to trap Clipboard change notifications. And another. |
|||
|
|
|
I believe one of the earlier solutions doesn't check for a null on the dispose method:
|
|||||||||
|
|
I know this answer is kind of late. I came to this answer and it works great but sometimes it doesn't when used on a console application. The only thing you need to add is a reference to Windows forms and this link should basically warap the functionality that I found on this question plus other places on the internet: |
|||
|
|