0

Can I get image from clipboard in Silverlight? How I can do it?

AndreyAkinshin
  • 18,603
  • 29
  • 96
  • 155

1 Answers1

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?

Community
  • 1
  • 1
Ponmalar
  • 6,871
  • 10
  • 50
  • 80