Can I get image from clipboard in Silverlight? How I can do it?
Asked
Active
Viewed 1,603 times
1 Answers
2
In Silverlight 5, access to clipboard information is limited to Unicode text access
. This differs from the WPF implementation of Clipboard, which enables access to other specific types (for example, streams or images) or to data objects.
Details: http://msdn.microsoft.com/en-us/library/system.windows.clipboard(v=vs.95).aspx
This may help you: How to copy image of a chart from Silverlight application to clipboard?