I havewritten a programthatretrievesdatafrom the clipboard. But I have a problem when I copy a (or multiple) Image-file(s) on my local system and use my application to catch the data from the clipboard (FileDrop). There is no data available.
So I tried multiple things:
- Local -> Local
- Remote -> Remote
- Local -> Remote
When I local copy an image and use my application to catch the image (local) it proceeds (Clipboard.ContainsImage()).
When I local copy a file and use my application to catch the file (local) it proceeds (Clipboard.ContainsFileDropList()).
When I Remote copy an image and use my application to catch the image (Remote ) it proceeds (Clipboard.ContainsImage()).
When I Remote copy a file and use my application to catch the file (Remote ) it proceeds (Clipboard.ContainsFileDropList()).
When I local copy an image and use my application to catch the image (Remote ) it proceeds (Clipboard.ContainsImage()).
When I local copy a file and use my application to catch the file (Remote ) there is no data available(Clipboard.ContainsFileDropList()).
I also tried the sample application from Microsoft:
http://code.msdn.microsoft.com/CSWPFClipboardViewer-f601b815
But the same problem.
Hope someone can help me... But I think it is a bug in the Clipboard library!