AndreyAkinshin
AndreyAkinshin

Reputation: 19031

Access to clipboard in Silverlight

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

Upvotes: 0

Views: 1625

Answers (1)

Ponmalar
Ponmalar

Reputation: 7031

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?

Upvotes: 2

Related Questions